diff options
| author | tsutsui <tsutsui@NetBSD.org> | 2009-04-18 14:58:02 +0000 |
|---|---|---|
| committer | tsutsui <tsutsui@NetBSD.org> | 2009-04-18 14:58:02 +0000 |
| commit | d779b85d3e27cbc6415031c4446bef314272b7be (patch) | |
| tree | 5836c2c63744b89d48a9207fb26e15108d8346bb /sys/dev/tc | |
| parent | 86340eaa2bc29d659f84a5fcd4ec8e1c545a7e3b (diff) | |
Remove extra whitespace added by a stupid tool.
XXX: more in src/sys/arch
Diffstat (limited to 'sys/dev/tc')
| -rw-r--r-- | sys/dev/tc/if_le_ioasic.c | 16 | ||||
| -rw-r--r-- | sys/dev/tc/zs_ioasic.c | 6 |
2 files changed, 11 insertions, 11 deletions
diff --git a/sys/dev/tc/if_le_ioasic.c b/sys/dev/tc/if_le_ioasic.c index 7cdedea3acc..e4743ff54fa 100644 --- a/sys/dev/tc/if_le_ioasic.c +++ b/sys/dev/tc/if_le_ioasic.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_le_ioasic.c,v 1.32 2009/03/18 17:06:50 cegger Exp $ */ +/* $NetBSD: if_le_ioasic.c,v 1.33 2009/04/18 14:58:04 tsutsui Exp $ */ /* * Copyright (c) 1996 Carnegie-Mellon University. @@ -32,7 +32,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_le_ioasic.c,v 1.32 2009/03/18 17:06:50 cegger Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_le_ioasic.c,v 1.33 2009/04/18 14:58:04 tsutsui Exp $"); #include "opt_inet.h" @@ -264,7 +264,7 @@ le_ioasic_copytobuf_gap16(struct lance_softc *sc, void *fromv, int boff, if (boff) { int xfer; xfer = min(len, 16 - boff); - memcpy( bptr + boff, from, xfer); + memcpy(bptr + boff, from, xfer); from += xfer; bptr += 32; len -= xfer; @@ -317,7 +317,7 @@ le_ioasic_copytobuf_gap16(struct lance_softc *sc, void *fromv, int boff, default: /* Does odd-aligned case ever happen? */ do { - memcpy( bptr, from, 16); + memcpy(bptr, from, 16); from += 16; bptr += 32; len -= 16; @@ -325,7 +325,7 @@ le_ioasic_copytobuf_gap16(struct lance_softc *sc, void *fromv, int boff, break; } if (len) - memcpy( bptr, from, len); + memcpy(bptr, from, len); } void @@ -343,7 +343,7 @@ le_ioasic_copyfrombuf_gap16(struct lance_softc *sc, void *tov, int boff, if (boff) { int xfer; xfer = min(len, 16 - boff); - memcpy( to, bptr + boff, xfer); + memcpy(to, bptr + boff, xfer); to += xfer; bptr += 32; len -= xfer; @@ -391,7 +391,7 @@ le_ioasic_copyfrombuf_gap16(struct lance_softc *sc, void *tov, int boff, /* XXX Does odd-byte-aligned case ever happen? */ default: do { - memcpy( to, bptr, 16); + memcpy(to, bptr, 16); to += 16; bptr += 32; len -= 16; @@ -399,7 +399,7 @@ le_ioasic_copyfrombuf_gap16(struct lance_softc *sc, void *tov, int boff, break; } if (len) - memcpy( to, bptr, len); + memcpy(to, bptr, len); } void diff --git a/sys/dev/tc/zs_ioasic.c b/sys/dev/tc/zs_ioasic.c index baa59f41184..d350fce89a2 100644 --- a/sys/dev/tc/zs_ioasic.c +++ b/sys/dev/tc/zs_ioasic.c @@ -1,4 +1,4 @@ -/* $NetBSD: zs_ioasic.c,v 1.38 2009/03/18 17:06:50 cegger Exp $ */ +/* $NetBSD: zs_ioasic.c,v 1.39 2009/04/18 14:58:04 tsutsui Exp $ */ /*- * Copyright (c) 1996, 1998 The NetBSD Foundation, Inc. @@ -41,7 +41,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: zs_ioasic.c,v 1.38 2009/03/18 17:06:50 cegger Exp $"); +__KERNEL_RCSID(0, "$NetBSD: zs_ioasic.c,v 1.39 2009/04/18 14:58:04 tsutsui Exp $"); #include "opt_ddb.h" #include "opt_kgdb.h" @@ -734,7 +734,7 @@ zs_ioasic_cninit(tc_addr_t ioasic_addr, tc_offset_t zs_offset, int channel) cs->cs_brg_clk = PCLK / 16; /* Initialize the pending registers. */ - memcpy( cs->cs_preg, zs_ioasic_init_reg, 16); + memcpy(cs->cs_preg, zs_ioasic_init_reg, 16); /* cs->cs_preg[5] |= (ZSWR5_DTR | ZSWR5_RTS); */ /* |
