Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

PCI hotplug: acpiphp whitespace cleanup

Clean up whitespace.

Setting 'let c_space_errors=1' in .vimrc shows all sorts of
ugliness. ;)

Signed-off-by: Alex Chiang <achiang@hp.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>

authored by

Alex Chiang and committed by
Jesse Barnes
2a9d3521 104bafcf

+4 -4
+1 -1
drivers/pci/hotplug/acpiphp.h
··· 44 44 do { \ 45 45 if (acpiphp_debug) \ 46 46 printk(KERN_DEBUG "%s: " format, \ 47 - MY_NAME , ## arg); \ 47 + MY_NAME , ## arg); \ 48 48 } while (0) 49 49 #define err(format, arg...) printk(KERN_ERR "%s: " format, MY_NAME , ## arg) 50 50 #define info(format, arg...) printk(KERN_INFO "%s: " format, MY_NAME , ## arg)
+3 -3
drivers/pci/hotplug/acpiphp_glue.c
··· 167 167 168 168 if (((buses >> 8) & 0xff) != bus->secondary) { 169 169 buses = (buses & 0xff000000) 170 - | ((unsigned int)(bus->primary) << 0) 171 - | ((unsigned int)(bus->secondary) << 8) 172 - | ((unsigned int)(bus->subordinate) << 16); 170 + | ((unsigned int)(bus->primary) << 0) 171 + | ((unsigned int)(bus->secondary) << 8) 172 + | ((unsigned int)(bus->subordinate) << 16); 173 173 pci_write_config_dword(bus->self, PCI_PRIMARY_BUS, buses); 174 174 } 175 175 return NOTIFY_OK;