diff options
author | 2014-09-27 06:23:30 +0000 | |
---|---|---|
committer | 2014-09-27 06:23:30 +0000 | |
commit | c2517b6a193c0167b583b47136204d0876190f02 (patch) | |
tree | b4ade8deaf7c445b358cab286f3bb64ce732ef89 | |
parent | add some more sdtemp devices (diff) | |
download | wireguard-openbsd-c2517b6a193c0167b583b47136204d0876190f02.tar.xz wireguard-openbsd-c2517b6a193c0167b583b47136204d0876190f02.zip |
Change spaces to tab. No binary change.
-rw-r--r-- | sys/arch/luna88k/dev/if_le.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/arch/luna88k/dev/if_le.c b/sys/arch/luna88k/dev/if_le.c index 7c9e9b9c43e..74a2dd66898 100644 --- a/sys/arch/luna88k/dev/if_le.c +++ b/sys/arch/luna88k/dev/if_le.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_le.c,v 1.6 2013/09/24 20:10:45 miod Exp $ */ +/* $OpenBSD: if_le.c,v 1.7 2014/09/27 06:23:30 aoyama Exp $ */ /* $NetBSD: if_le.c,v 1.33 1996/11/20 18:56:52 gwr Exp $ */ /*- @@ -113,12 +113,12 @@ lerdcsr(struct lance_softc *sc, uint16_t port) int le_match(struct device *parent, void *cf, void *aux) { - struct mainbus_attach_args *ma = aux; + struct mainbus_attach_args *ma = aux; - if (strcmp(ma->ma_name, le_cd.cd_name)) - return (0); + if (strcmp(ma->ma_name, le_cd.cd_name)) + return (0); - return (1); + return (1); } void @@ -171,7 +171,7 @@ extern char fuse_rom_data[]; void myetheraddr(uint8_t *ether) { - unsigned i, loc; + unsigned i, loc; volatile struct { uint32_t ctl; } *ds1220; switch (machtype) { @@ -187,7 +187,7 @@ myetheraddr(uint8_t *ether) u = (u < 'A') ? u & 0xf : u - 'A' + 10; l = fuse_rom_data[loc + 1]; l = (l < 'A') ? l & 0xf : l - 'A' + 10; - + ether[i] = l | (u << 4); loc += 2; } |