diff options
author | Tom Cosgrove <tom@cvs.openbsd.org> | 2017-06-22 11:34:52 +0000 |
---|---|---|
committer | Tom Cosgrove <tom@cvs.openbsd.org> | 2017-06-22 11:34:52 +0000 |
commit | 77d3294f524c65837cf0d2c33a4e741264e5f137 (patch) | |
tree | 42a111a5175db21eeb22b7e1f58b5d8990fad228 /sys/arch/sh/dev | |
parent | acaa668c481b678a1a19aa55581bdc2be5bef018 (diff) |
Fix the remaining ';;'s in sys/
Diffstat (limited to 'sys/arch/sh/dev')
-rw-r--r-- | sys/arch/sh/dev/shpcic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sh/dev/shpcic.c b/sys/arch/sh/dev/shpcic.c index f5b19897d5e..7b3ca89a38d 100644 --- a/sys/arch/sh/dev/shpcic.c +++ b/sys/arch/sh/dev/shpcic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: shpcic.c,v 1.12 2010/12/04 17:06:32 miod Exp $ */ +/* $OpenBSD: shpcic.c,v 1.13 2017/06/22 11:34:51 tom Exp $ */ /* $NetBSD: shpcic.c,v 1.10 2005/12/24 20:07:32 perry Exp $ */ /* @@ -248,7 +248,7 @@ shpcic_attach(struct device *parent, struct device *self, void *aux) sc->sc_membus_space.bus_io = 0; sc->sc_iobus_space.bus_base = SH4_PCIC_IO; /* XXX */ sc->sc_iobus_space.bus_size = SH4_PCIC_IO_SIZE; - sc->sc_iobus_space.bus_io = 1;; + sc->sc_iobus_space.bus_io = 1; io_ex = extent_create("pciio", 0, 0xffffffff, M_DEVBUF, NULL, 0, EX_NOWAIT | EX_FILLED); |