diff options
author | imp <imp@FreeBSD.org> | 2001-09-04 05:57:00 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2001-09-04 05:57:00 +0000 |
commit | 4ef4acca332fd8a5db30669b471bf055ae5688d5 (patch) | |
tree | 61d31b3bfd7244613666d79acbb32280d51234af /sys/pccard | |
parent | 6b5eb4a0bda0d93e6cbcc6da091eece120754e11 (diff) | |
download | FreeBSD-src-4ef4acca332fd8a5db30669b471bf055ae5688d5.zip FreeBSD-src-4ef4acca332fd8a5db30669b471bf055ae5688d5.tar.gz |
Kill init_t type, and minor white space changes to match original -stable version
Diffstat (limited to 'sys/pccard')
-rw-r--r-- | sys/pccard/pcic_pci.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/pccard/pcic_pci.c b/sys/pccard/pcic_pci.c index 1ee0bca..4f66cc5 100644 --- a/sys/pccard/pcic_pci.c +++ b/sys/pccard/pcic_pci.c @@ -87,8 +87,6 @@ doing so will cause probelms. Often when no interrupts appear to be routed\n\ setting this tunable to 1 will resolve the problem. PCI Cards will almost\n\ always require this, while builtin bridges need it less often"); -typedef void (*init_t)(device_t); - static void pcic_pci_cardbus_init(device_t); static pcic_intr_mapirq_t pcic_pci_gen_mapirq; @@ -179,14 +177,13 @@ static struct pcic_chip pcic_pci_topic_chip = { pcic_pci_topic_init }; - struct pcic_pci_table { u_int32_t devid; const char *descr; int type; u_int32_t flags; - struct pcic_chip *chip; + struct pcic_chip *chip; } pcic_pci_devs[] = { { PCI_DEVICE_ID_PCIC_CLPD6729, "Cirrus Logic PD6729/6730 PC-Card Controller", |