diff options
author | 2008-10-21 21:52:07 +0000 | |
---|---|---|
committer | 2008-10-21 21:52:07 +0000 | |
commit | 7fc02afdd311ff922b5fe6a4ef901ac5e90077dd (patch) | |
tree | 3ebaaf021d54d2f9a4c0dc4c02f0b29f7f6fefb3 | |
parent | style nits. (diff) | |
download | wireguard-openbsd-7fc02afdd311ff922b5fe6a4ef901ac5e90077dd.tar.xz wireguard-openbsd-7fc02afdd311ff922b5fe6a4ef901ac5e90077dd.zip |
more style nits.
-rw-r--r-- | sys/arch/amd64/amd64/ioapic.c | 4 | ||||
-rw-r--r-- | sys/arch/i386/i386/ioapic.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/amd64/amd64/ioapic.c b/sys/arch/amd64/amd64/ioapic.c index b4b03a9b90c..c66c165ddd8 100644 --- a/sys/arch/amd64/amd64/ioapic.c +++ b/sys/arch/amd64/amd64/ioapic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ioapic.c,v 1.15 2008/10/21 21:31:10 brad Exp $ */ +/* $OpenBSD: ioapic.c,v 1.16 2008/10/21 21:52:07 brad Exp $ */ /* $NetBSD: ioapic.c,v 1.6 2003/05/15 13:30:31 fvdl Exp $ */ /*- @@ -371,7 +371,7 @@ ioapic_attach(struct device *parent, struct device *self, void *aux) #if 0 /* output of this was boring. */ if (mp_verbose) - for (i=0; i<sc->sc_apic_sz; i++) + for (i = 0; i < sc->sc_apic_sz; i++) ioapic_print_redir(sc, "boot", i); #endif } diff --git a/sys/arch/i386/i386/ioapic.c b/sys/arch/i386/i386/ioapic.c index bc365af19b2..cc6b3b9dfaf 100644 --- a/sys/arch/i386/i386/ioapic.c +++ b/sys/arch/i386/i386/ioapic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ioapic.c,v 1.18 2008/10/21 21:31:10 brad Exp $ */ +/* $OpenBSD: ioapic.c,v 1.19 2008/10/21 21:52:07 brad Exp $ */ /* $NetBSD: ioapic.c,v 1.7 2003/07/14 22:32:40 lukem Exp $ */ /*- @@ -320,7 +320,7 @@ ioapic_attach(struct device *parent, struct device *self, void *aux) #if 0 /* output of this was boring. */ if (mp_verbose) - for (i=0; i<sc->sc_apic_sz; i++) + for (i = 0; i < sc->sc_apic_sz; i++) ioapic_print_redir(sc, "boot", i); #endif } |