diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-09-19 20:18:58 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-09-19 20:18:58 +0000 |
commit | 343c702519159f14075aff852e565c963b591c45 (patch) | |
tree | 461199179b3d322a530e5426ffd3bec7bf416eff /sys/arch/macppc/dev | |
parent | 818d141da99e306936d1cee18b6121af46c9688e (diff) |
Fix a typo... and remove return; at the end of a void function.
Diffstat (limited to 'sys/arch/macppc/dev')
-rw-r--r-- | sys/arch/macppc/dev/if_wi_obio.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/arch/macppc/dev/if_wi_obio.c b/sys/arch/macppc/dev/if_wi_obio.c index e7cf9b4893b..bbf516c25d4 100644 --- a/sys/arch/macppc/dev/if_wi_obio.c +++ b/sys/arch/macppc/dev/if_wi_obio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_wi_obio.c,v 1.2 2001/09/10 12:55:59 drahn Exp $ */ +/* $OpenBSD: if_wi_obio.c,v 1.3 2001/09/19 20:18:57 miod Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -120,7 +120,7 @@ wi_obio_attach(parent, self, aux) sc->wi_btag = ca->ca_iot; ca->ca_reg[0] += ca->ca_baseaddr; if (bus_space_map(sc->wi_btag, ca->ca_reg[0], ca->ca_reg[1], 0, &sc->wi_bhandle)) { - printf("cant' map i/o space\n"); + printf("can't map i/o space\n"); } /* FSCKING hackery */ psc->keywest = (u_int) mapiodev(0x80000000, 0x1d000); @@ -136,8 +136,6 @@ wi_obio_attach(parent, self, aux) wi_obio_enable(sc); wi_attach(sc); - return; - } int |