diff options
author | H. Peter Anvin <hpa@zytor.com> | 2006-05-03 17:32:15 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2006-05-03 17:32:15 -0700 |
commit | 28eecd8965aedbd75727fb0797a2e7033d5c54ee (patch) | |
tree | 1cac9ffc5f7fe7fd82d59b4accd7b8cf85762f74 /com32/lib/pci/readx.c | |
parent | f8c463722022008c8412a69f90576d2bf38818ed (diff) | |
download | syslinux.git-28eecd8965aedbd75727fb0797a2e7033d5c54ee.tar.gz syslinux.git-28eecd8965aedbd75727fb0797a2e7033d5c54ee.tar.xz syslinux.git-28eecd8965aedbd75727fb0797a2e7033d5c54ee.zip |
Across-the-board stealth whitespace cleanup
Diffstat (limited to 'com32/lib/pci/readx.c')
-rw-r--r-- | com32/lib/pci/readx.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/com32/lib/pci/readx.c b/com32/lib/pci/readx.c index cbd7496f..3f19cad2 100644 --- a/com32/lib/pci/readx.c +++ b/com32/lib/pci/readx.c @@ -10,7 +10,7 @@ TYPE BWL(pci_read) (pciaddr_t a) case PCI_CFG_AUTO: pci_set_config_type(PCI_CFG_AUTO); break; /* Try again */ - + case PCI_CFG_TYPE1: { uint32_t oldcf8; @@ -22,14 +22,14 @@ TYPE BWL(pci_read) (pciaddr_t a) sti(); } return r; - + case PCI_CFG_TYPE2: { uint8_t oldcf8, oldcfa; - + if ( a & (0x10 << 11) ) return (TYPE)~0; /* Device 16-31 not supported */ - + cli(); oldcf8 = inb(0xcf8); oldcfa = inb(0xcfa); @@ -44,7 +44,7 @@ TYPE BWL(pci_read) (pciaddr_t a) case PCI_CFG_BIOS: return (TYPE) __pci_read_bios(BIOSCALL, a); - + default: return (TYPE)~0; } |