Changeset b90855c in rtems
- Timestamp:
- Nov 10, 2004, 10:27:55 PM (16 years ago)
- Children:
- d700909e
- Parents:
- 0b929fe
- Location:
- c/src/libchip
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/libchip/ChangeLog
r0b929fe rb90855c 1 2004-11-10 Richard Campbell <richard.campbell@oarcorp.com> 2 3 * network/dec21140.c: Cleanup a bit and remove message about not 4 supported on PowerPC since it works on the MVME2100 BSP. 5 1 6 2004-11-10 Joel Sherrill <joel@oarcorp.com> 2 7 -
c/src/libchip/network/dec21140.c
r0b929fe rb90855c 628 628 sc->irqInfo.isOn = dec21140IsOn; 629 629 630 #ifdef DEC_DEBUG 631 printk( "dec2114x: Installing IRQ %d\n", sc->irqInfo.name ); 632 #endif 630 633 #ifdef BSP_SHARED_HANDLER_SUPPORT 631 634 st = BSP_install_rtems_shared_irq_handler( &sc->irqInfo ); … … 1027 1030 * from the user. 1028 1031 */ 1029 if( (unitNumber = rtems_bsdnet_parse_driver_name( 1032 if( (unitNumber = rtems_bsdnet_parse_driver_name(config, &unitName)) == -1 ) 1030 1033 { 1031 1034 return 0; … … 1078 1081 unitNumber-1, &pbus, &pdev, &pfun) != -1 ) 1079 1082 { 1080 printk("dec21143 : found device '%s', PPC support has not been tested. Using it anyway.\n",1081 config->name );1082 1083 1083 pci_write_config_dword(pbus, 1084 1084 pdev, … … 1155 1155 else 1156 1156 sc->base = (unsigned int *)(value & ~MEM_MASK); 1157 1157 1158 1158 pcib_conf_read8(signature, 60, &interrupt); 1159 1159 cvalue = interrupt; … … 1174 1174 &lvalue); 1175 1175 1176 tmp = (unsigned int)(lvalue & (unsigned int)(~MEM_MASK)) + (unsigned int)PCI_MEM_BASE; 1176 tmp = (unsigned int)(lvalue & (unsigned int)(~MEM_MASK)) 1177 + (unsigned int)PCI_MEM_BASE_ADJUSTMENT; 1177 1178 1178 1179 sc->base = (unsigned int *)(tmp); … … 1210 1211 1211 1212 1212 /* printk("dec2114x : unit %d base address %08x.\n", unitNumber, sc->base ); */ 1213 #ifdef DEC_DEBUG 1214 printk("dec2114x : unit %d base address %08x.\n", unitNumber, sc->base ); 1215 #endif 1213 1216 1214 1217
Note: See TracChangeset
for help on using the changeset viewer.