PCI Hotplug: cpqphp: stray whitespace cleanups

Clean up all stray whitespace issues, such as trailing whitespace,
spaces before tabs, etc. and whatever else vim's c_space_errors
highlights in red.

Signed-off-by: Alex Chiang <achiang@hp.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
This commit is contained in:
Alex Chiang
2009-03-31 09:23:11 -06:00
committed by Jesse Barnes
parent d09ee9687e
commit 861fefbf55
5 changed files with 110 additions and 122 deletions

View File

@ -1291,7 +1291,6 @@ err_disable_device:
return rc;
}
static int one_time_init(void)
{
int loop;
@ -1361,7 +1360,6 @@ error:
return retval;
}
static void __exit unload_cpqphpd(void)
{
struct pci_func *next;
@ -1475,8 +1473,6 @@ static void __exit unload_cpqphpd(void)
iounmap(smbios_start);
}
static struct pci_device_id hpcd_pci_tbl[] = {
{
/* handle any PCI Hotplug controller */
@ -1494,8 +1490,6 @@ static struct pci_device_id hpcd_pci_tbl[] = {
MODULE_DEVICE_TABLE(pci, hpcd_pci_tbl);
static struct pci_driver cpqhpc_driver = {
.name = "compaq_pci_hotplug",
.id_table = hpcd_pci_tbl,
@ -1503,8 +1497,6 @@ static struct pci_driver cpqhpc_driver = {
/* remove: cpqhpc_remove_one, */
};
static int __init cpqhpc_init(void)
{
int result;
@ -1518,7 +1510,6 @@ static int __init cpqhpc_init(void)
return result;
}
static void __exit cpqhpc_cleanup(void)
{
dbg("unload_cpqphpd()\n");
@ -1529,8 +1520,5 @@ static void __exit cpqhpc_cleanup(void)
cpqhp_shutdown_debugfs();
}
module_init(cpqhpc_init);
module_exit(cpqhpc_cleanup);