From: akpm@linux-foundation.org Date: Wed, 15 Apr 2009 21:24:08 +0000 (-0700) Subject: PCI: ibmphp_core.c: fix warning due to missing module_exit() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=64f039d3d7f574943165b1afb72ee25caa1a9a91;p=linux.git 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 Signed-off-by: Andrew Morton Signed-off-by: Jesse Barnes --- diff --git a/drivers/pci/hotplug/ibmphp_core.c b/drivers/pci/hotplug/ibmphp_core.c index dd18f857dfb04..29ccb8a6da8a9 100644 --- a/drivers/pci/hotplug/ibmphp_core.c +++ b/drivers/pci/hotplug/ibmphp_core.c @@ -1419,3 +1419,4 @@ static void __exit ibmphp_exit(void) } module_init(ibmphp_init); +module_exit(ibmphp_exit);