linux-serial.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] 8250 PCI Serial driver not always disabling PCI device
@ 2005-07-20  7:27 Rolf Eike Beer
  2005-07-20  8:03 ` Russell King
  0 siblings, 1 reply; 3+ messages in thread
From: Rolf Eike Beer @ 2005-07-20  7:27 UTC (permalink / raw)
  To: rmk+serial; +Cc: linux-serial

Hi,

I found that pciserial_remove_one() only disables the device if it finds 
private data. This looks suspicious to me. Patch attached.

Eike

Signed-off-by: Rolf Eike Beer <eike-kernel@sf-tec.de>

--- linux-2.6.13-rc3/drivers/serial/8250_pci.c	2005-07-13 06:46:46.000000000 
+0200
+++ linux-2.6.13-rc3-eike/drivers/serial/8250_pci.c	2005-07-20 
09:16:28.000000000 +0200
@@ -1778,10 +1778,10 @@ static void __devexit pciserial_remove_o
 		if (quirk->exit)
 			quirk->exit(dev);
 
-		pci_disable_device(dev);
-
 		kfree(priv);
 	}
+
+	pci_disable_device(dev);
 }
 
 static int pciserial_suspend_one(struct pci_dev *dev, pm_message_t state)

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

end of thread, other threads:[~2005-07-20  8:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-07-20  7:27 [PATCH] 8250 PCI Serial driver not always disabling PCI device Rolf Eike Beer
2005-07-20  8:03 ` Russell King
2005-07-20  8:24   ` Rolf Eike Beer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).