Changeset 91df4886 in rtems
- Timestamp:
- May 10, 2005, 2:47:20 AM (15 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, master
- Children:
- eea2067
- Parents:
- c95d815
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/powerpc/shared/bootloader/pci.c
rc95d815 r91df4886 27 27 28 28 #include <string.h> 29 30 typedef unsigned int u32;31 32 29 33 30 … … 709 706 710 707 u_short cmd; 711 u 32l, ml;708 uint32_t l, ml; 712 709 pci_read_config_word(dev, PCI_COMMAND, &cmd); 713 710 … … 1195 1192 pdev->devfn, 1196 1193 PCI_BRIDGE_CONTROL, 1197 (u nsigned16)( 0 ));1194 (uint16_t)( 0 )); 1198 1195 1199 1196 pcibios_write_config_word(pdev->bus->number, 1200 1197 pdev->devfn, 1201 1198 PCI_COMMAND, 1202 (u nsigned16)( PCI_COMMAND_IO |1199 (uint16_t)( PCI_COMMAND_IO | 1203 1200 PCI_COMMAND_MEMORY | 1204 1201 PCI_COMMAND_MASTER ));
Note: See TracChangeset
for help on using the changeset viewer.