From 48cd14d5a8fe3f79bcc0f34a41e0695ec26b48d3 Mon Sep 17 00:00:00 2001 From: David Gwynne Date: Thu, 2 Nov 2006 02:01:37 +0000 Subject: more whitespace fixes --- sys/dev/pci/if_vic.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'sys/dev/pci/if_vic.c') diff --git a/sys/dev/pci/if_vic.c b/sys/dev/pci/if_vic.c index 0c09a1f4347..e886f6021fc 100644 --- a/sys/dev/pci/if_vic.c +++ b/sys/dev/pci/if_vic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_vic.c,v 1.18 2006/11/02 01:54:13 dlg Exp $ */ +/* $OpenBSD: if_vic.c,v 1.19 2006/11/02 02:01:36 dlg Exp $ */ /* * Copyright (c) 2006 Reyk Floeter @@ -283,14 +283,14 @@ vic_map_pci(struct vic_softc *sc, struct pci_attach_args *pa) printf(": unable to map interrupt\n"); goto unmap; } - + intrstr = pci_intr_string(pa->pa_pc, ih); sc->sc_ih = pci_intr_establish(pa->pa_pc, ih, IPL_BIO, vic_intr, sc, DEVNAME(sc)); if (sc->sc_ih == NULL) { printf(": unable to map interrupt%s%s\n", - intrstr == NULL ? "" : " at ", - intrstr == NULL ? "" : intrstr); + intrstr == NULL ? "" : " at ", + intrstr == NULL ? "" : intrstr); goto unmap; } printf(": %s\n", intrstr); @@ -490,7 +490,7 @@ freerxbs: void vic_link_state(struct vic_softc *sc) -{ +{ struct ifnet *ifp = &sc->sc_ac.ac_if; u_int32_t status; int link_state = LINK_STATE_DOWN; @@ -883,7 +883,7 @@ vic_watchdog(struct ifnet *ifp) if (!IFQ_IS_EMPTY(&ifp->if_snd)) vic_start(ifp); -#endif +#endif } int @@ -1147,9 +1147,9 @@ vic_read(struct vic_softc *sc, bus_size_t r) void vic_write(struct vic_softc *sc, bus_size_t r, u_int32_t v) { - bus_space_write_4(sc->sc_iot, sc->sc_ioh, r, v); - bus_space_barrier(sc->sc_iot, sc->sc_ioh, r, 4, - BUS_SPACE_BARRIER_WRITE); + bus_space_write_4(sc->sc_iot, sc->sc_ioh, r, v); + bus_space_barrier(sc->sc_iot, sc->sc_ioh, r, 4, + BUS_SPACE_BARRIER_WRITE); } u_int32_t -- cgit v1.2.3