Browse Source

PCI: ibmphp_core.c: fix warning due to missing module_exit()

drivers/pci/hotplug/ibmphp_core.c:1414: warning: `ibmphp_exit' defined but not used

Signed-off-by: Zhenwen Xu <helight.xu@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
akpm@linux-foundation.org 16 years ago
parent
commit
64f039d3d7
1 changed files with 1 additions and 0 deletions
  1. 1 0
      drivers/pci/hotplug/ibmphp_core.c

+ 1 - 0
drivers/pci/hotplug/ibmphp_core.c

@@ -1419,3 +1419,4 @@ static void __exit ibmphp_exit(void)
 }
 
 module_init(ibmphp_init);
+module_exit(ibmphp_exit);