diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 2005-11-19 01:59:38 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 2005-11-19 01:59:38 +0000 |
commit | 16017b33d1fad6b6fd295f39b365b33719b42ae9 (patch) | |
tree | dd744503f5f61982f700de633cd3e581ecf4fc23 /sys/arch/hp300/dev | |
parent | 2ce5c95d13b01831f3ec854499928fd2b1b80943 (diff) |
Remove superfluous statement-ending semi-colons. i.e., "return foo;;" should
just be "return foo;". Cleaning out some M's in my tree.
Diffstat (limited to 'sys/arch/hp300/dev')
-rw-r--r-- | sys/arch/hp300/dev/hyper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hp300/dev/hyper.c b/sys/arch/hp300/dev/hyper.c index 4a8cab5cbc3..7e414fc9fb1 100644 --- a/sys/arch/hp300/dev/hyper.c +++ b/sys/arch/hp300/dev/hyper.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hyper.c,v 1.9 2005/01/24 21:36:39 miod Exp $ */ +/* $OpenBSD: hyper.c,v 1.10 2005/11/19 01:59:36 aaron Exp $ */ /* * Copyright (c) 2005, Miodrag Vallat. @@ -159,7 +159,7 @@ hyper_attach(struct device *parent, struct device *self, void *aux) scode = da->da_scode; if (scode == conscode) { fbr = (struct diofbreg *)conaddr; /* already mapped */ - sc->sc_fb = &diofb_cn;; + sc->sc_fb = &diofb_cn; } else { sc->sc_fb = &sc->sc_fb_store; fbr = (struct diofbreg *) |