Changeset 379 for lm-sensors/trunk/kernel/include/compat.h
- Timestamp:
- 04/11/99 18:12:36 (14 years ago)
- Files:
-
- 1 modified
-
lm-sensors/trunk/kernel/include/compat.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/kernel/include/compat.h
r207 r379 64 64 #define pci_present pcibios_present 65 65 #define pci_read_config_byte_united(device,bus,dev,com,res) \ 66 pcibios_read_config_byte(bus,dev,com,res) ;66 pcibios_read_config_byte(bus,dev,com,res) 67 67 #define pci_read_config_word_united(device,bus,dev,com,res) \ 68 pcibios_read_config_word(bus,dev,com,res) ;68 pcibios_read_config_word(bus,dev,com,res) 69 69 #define pci_write_config_byte_united(device,bus,dev,com,res) \ 70 pcibios_write_config_byte(bus,dev,com,res) ;70 pcibios_write_config_byte(bus,dev,com,res) 71 71 #define pci_write_config_word_united(device,bus,dev,com,res) \ 72 pcibios_write_config_word(bus,dev,com,res) ;72 pcibios_write_config_word(bus,dev,com,res) 73 73 #else 74 74 #define pci_read_config_byte_united(device,bus,dev,com,res) \ 75 pci_read_config_byte(device,com,res) ;75 pci_read_config_byte(device,com,res) 76 76 #define pci_read_config_word_united(device,bus,dev,com,res) \ 77 pci_read_config_word(device,com,res) ;77 pci_read_config_word(device,com,res) 78 78 #define pci_write_config_byte_united(device,bus,dev,com,res) \ 79 pci_write_config_byte(device,com,res) ;79 pci_write_config_byte(device,com,res) 80 80 #define pci_write_config_word_united(device,bus,dev,com,res) \ 81 pci_write_config_byte(device,com,res) ;81 pci_write_config_byte(device,com,res) 82 82 #endif 83 83
