From 83e9f36b668cccde7476ae5a5447c0357b1a0fa4 Mon Sep 17 00:00:00 2001 From: imp Date: Tue, 23 May 2006 23:33:57 +0000 Subject: [PATCH] Whitespace nits --- sys/dev/pccbb/pccbb_pci.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/dev/pccbb/pccbb_pci.c b/sys/dev/pccbb/pccbb_pci.c index 99e67dafafb5..ceed7846d888 100644 --- a/sys/dev/pccbb/pccbb_pci.c +++ b/sys/dev/pccbb/pccbb_pci.c @@ -286,7 +286,7 @@ static void cbb_print_config(device_t dev) { int i; - + device_printf(dev, "PCI Configuration space:"); for (i = 0; i < 256; i += 4) { if (i % 16 == 0) @@ -329,7 +329,7 @@ cbb_pci_attach(device_t brdev) DEVPRINTF((brdev, "Found memory at %08lx\n", rman_get_start(sc->base_res))); } - + sc->bst = rman_get_bustag(sc->base_res); sc->bsh = rman_get_bushandle(sc->base_res); exca_init(&sc->exca[0], brdev, sc->bst, sc->bsh, CBB_EXCA_OFFSET); @@ -341,7 +341,7 @@ cbb_pci_attach(device_t brdev) /* * This is a gross hack. We should be scanning the entire pci * tree, assigning bus numbers in a way such that we (1) can - * reserve 1 extra bus just in case and (2) all sub busses + * reserve 1 extra bus just in case and (2) all sub busses * are in an appropriate range. */ bus = pci_read_config(brdev, PCIR_SECBUS_2, 1);