summaryrefslogtreecommitdiffstats
path: root/c/src/libchip
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-11-26 22:25:53 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-11-26 22:25:53 +0000
commit9d7fa71a5176ba81110881d34b2610c83412d505 (patch)
treec74a2ecac0b593dc4fc7d059639bd84c4016cca2 /c/src/libchip
parent2007-11-26 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-9d7fa71a5176ba81110881d34b2610c83412d505.tar.bz2
2007-11-26 Joel Sherrill <joel.sherrill@oarcorp.com>
* libchip/network/if_fxp.c: Spacing.
Diffstat (limited to 'c/src/libchip')
-rw-r--r--c/src/libchip/network/if_fxp.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/c/src/libchip/network/if_fxp.c b/c/src/libchip/network/if_fxp.c
index 8dbc96c88e..3a2188843d 100644
--- a/c/src/libchip/network/if_fxp.c
+++ b/c/src/libchip/network/if_fxp.c
@@ -452,21 +452,21 @@ rtems_fxp_attach(struct rtems_bsdnet_ifconfig *config, int attaching)
{ int j; int pbus, pdev, pfun;
for (j=0; fxp_ident_table[j].devid; j++ ) {
- i = pci_find_device( 0x8086, fxp_ident_table[j].devid,
- unitNumber-1, &pbus, &pdev, &pfun );
- sc->pci_signature = PCIB_DEVSIG_MAKE( pbus, pdev, pfun );
- DBGLVL_PRINTK(2,"fxp_attach: find_devid returned %d "
+ i = pci_find_device( 0x8086, fxp_ident_table[j].devid,
+ unitNumber-1, &pbus, &pdev, &pfun );
+ sc->pci_signature = PCIB_DEVSIG_MAKE( pbus, pdev, pfun );
+ DBGLVL_PRINTK(2,"fxp_attach: find_devid returned %d "
"and pci signature 0x%x\n",
i,sc->pci_signature);
- if (PCIB_ERR_SUCCESS == i) {
- if ( UNTESTED == fxp_ident_table[j].warn ) {
- device_printf(dev,
+ if (PCIB_ERR_SUCCESS == i) {
+ if ( UNTESTED == fxp_ident_table[j].warn ) {
+ device_printf(dev,
"WARNING: this chip version has NOT been reported to work under RTEMS yet.\n");
- device_printf(dev,
+ device_printf(dev,
" If it works OK, report it as tested in 'c/src/libchip/network/if_fxp.c'\n");
- }
+ }
break;
- }
+ }
}
}