public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] Fixup PCI driver shutdown
@ 2005-10-16 20:31 Russell King
  2005-10-16 20:32 ` [PATCH 2/2] Convert megaraid to use pci_driver shutdown method Russell King
  0 siblings, 1 reply; 2+ messages in thread
From: Russell King @ 2005-10-16 20:31 UTC (permalink / raw)
  To: Linux Kernel List, Andrew Morton, Greg KH

Add a warning to pci driver registration code so that we know
whether we have drivers using the obsolete driver shutdown
method.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

diff --git a/drivers/pci/pci-driver.c b/drivers/pci/pci-driver.c
--- a/drivers/pci/pci-driver.c
+++ b/drivers/pci/pci-driver.c
@@ -377,6 +377,9 @@ int pci_register_driver(struct pci_drive
 	 * the pci shutdown function, this test can go away. */
 	if (!drv->driver.shutdown)
 		drv->driver.shutdown = pci_device_shutdown;
+	else
+		printk(KERN_WARNING "Warning: PCI driver %s has a struct device_driver shutdown method, please update!\n",
+			drv->name);
 	drv->driver.owner = drv->owner;
 	drv->driver.kobj.ktype = &pci_driver_kobj_type;
 

-- 
Russell King
 Linux kernel    2.6 ARM Linux   - http://www.arm.linux.org.uk/
 maintainer of:  2.6 Serial core

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2005-10-16 20:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-10-16 20:31 [PATCH 1/2] Fixup PCI driver shutdown Russell King
2005-10-16 20:32 ` [PATCH 2/2] Convert megaraid to use pci_driver shutdown method Russell King

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox