summaryrefslogtreecommitdiffstats
path: root/sys/pccard/pcic.c
diff options
context:
space:
mode:
authornate <nate@FreeBSD.org>1997-10-25 21:02:44 +0000
committernate <nate@FreeBSD.org>1997-10-25 21:02:44 +0000
commit35f6cb0d89e248f8dbb40dd51371747b8ba1f0bc (patch)
tree1f3da1bb5a3b045520dbe1e003e70209c672fb5c /sys/pccard/pcic.c
parentd7f6ac99391f568a5efbeee85dd63682eebf4b53 (diff)
downloadFreeBSD-src-35f6cb0d89e248f8dbb40dd51371747b8ba1f0bc.zip
FreeBSD-src-35f6cb0d89e248f8dbb40dd51371747b8ba1f0bc.tar.gz
- KNF the PCI stuff, no functional changes.
Diffstat (limited to 'sys/pccard/pcic.c')
-rw-r--r--sys/pccard/pcic.c44
1 files changed, 24 insertions, 20 deletions
diff --git a/sys/pccard/pcic.c b/sys/pccard/pcic.c
index fc487ae..31a707d 100644
--- a/sys/pccard/pcic.c
+++ b/sys/pccard/pcic.c
@@ -64,6 +64,21 @@
#if NPCI > 0
#include <pci/pcivar.h>
+static char *pcic_pci_probe(pcici_t tag, pcidi_t type);
+static void pcic_pci_attach(pcici_t tag, int unit);
+
+static u_long pcic_pci_count;
+
+static struct pci_device pcic_pci_device = {
+ "pcic",
+ pcic_pci_probe,
+ pcic_pci_attach,
+ &pcic_pci_count,
+ NULL
+};
+
+DATA_SET(pcidevice_set, pcic_pci_device);
+
#define PCI_DEVICE_ID_PCIC_TI1130 0xAC12104Cul
#define PCI_DEVICE_ID_PCIC_TI1131 0xAC15104Cul
#define PCI_DEVICE_ID_PCIC_CLPD6729 0x11001013ul
@@ -88,7 +103,7 @@ pcic_pci_probe(pcici_t tag, pcidi_t type)
static void
pcic_pci_attach(pcici_t tag, int unit)
{
- int i,j;
+ int i, j;
u_char *p;
u_long *pl;
@@ -96,9 +111,9 @@ pcic_pci_attach(pcici_t tag, int unit)
return;
printf ("PCI Config space:\n");
- for (j=0;j<0x98;j+=16) {
+ for (j = 0; j < 0x98; j += 16) {
printf("%02x: ", j);
- for (i=0;i<16;i+=4) {
+ for (i = 0; i < 16; i += 4) {
printf(" %08x", pci_conf_read(tag, i+j));
}
printf("\n");
@@ -108,27 +123,16 @@ pcic_pci_attach(pcici_t tag, int unit)
pl = (u_long *)p;
printf ("Cardbus Socket registers:\n");
printf("00: ");
- for (i=0;i<4;i+=1) printf(" %08x:",pl[i]);
+ for (i = 0; i < 4; i += 1)
+ printf(" %08x:", pl[i]);
printf("\n10: ");
- for (i=4;i<8;i+=1) printf(" %08x:",pl[i]);
+ for (i =4 ; i < 8; i += 1)
+ printf(" %08x:", pl[i]);
printf ("\nExCa registers:\n");
- for (i=0;i<0x40;i+=16)
- printf("%02x: %16D\n",i, p+0x800+i," ");
+ for (i = 0; i < 0x40; i += 16)
+ printf("%02x: %16D\n", i, p + 0x800 + i, " ");
return;
}
-
-static u_long pcic_pci_count;
-
-static struct pci_device pcic_pci_device = {
- "pcic",
- pcic_pci_probe,
- pcic_pci_attach,
- &pcic_pci_count,
- NULL
-};
-
-DATA_SET(pcidevice_set, pcic_pci_device);
-
#endif /* NPCI > 0 */
/*
* Prototypes for interrupt handler.
OpenPOWER on IntegriCloud