summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2001-10-17 05:33:51 +0000
committerWarner Losh <imp@FreeBSD.org>2001-10-17 05:33:51 +0000
commite5ee3605a94d7709bb6d2ada9f391cc442b6a9a4 (patch)
tree6678ae15b247aeab0eefb56a63877332328a2f62
parentb79e6caffe85a5b7d4a536c0c4bcd5549b8d102b (diff)
Notes
-rw-r--r--sys/pccard/pcic_pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/pccard/pcic_pci.c b/sys/pccard/pcic_pci.c
index ddfd23745bfa..f66edcaf3377 100644
--- a/sys/pccard/pcic_pci.c
+++ b/sys/pccard/pcic_pci.c
@@ -1127,7 +1127,7 @@ pcic_pci_print_config(device_t dev)
device_printf(dev, "PCI Configuration space:");
for (i = 0; i < 256; i += 4) {
- if (i % 4 == 0)
+ if (i % 16 == 0)
printf("\n 0x%02x: ", i);
printf("0x%08x ", pci_read_config(dev, i, 4));
}