public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] [PATCH] Rename pdc_init
@ 2006-10-06 16:12 Matthew Wilcox
  2006-10-06 16:42 ` Jeff Garzik
  0 siblings, 1 reply; 6+ messages in thread
From: Matthew Wilcox @ 2006-10-06 16:12 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-kernel, Matthew Wilcox

parisc uses pdc_init() for different purposes, so call it pdc202xx_init
instead.

Signed-off-by: Matthew Wilcox <matthew@wil.cx>
---
 drivers/ata/pata_pdc202xx_old.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/ata/pata_pdc202xx_old.c b/drivers/ata/pata_pdc202xx_old.c
index 5ba9eb2..8850ed5 100644
--- a/drivers/ata/pata_pdc202xx_old.c
+++ b/drivers/ata/pata_pdc202xx_old.c
@@ -402,12 +402,12 @@ static struct pci_driver pdc_pci_driver 
 	.remove		= ata_pci_remove_one
 };
 
-static int __init pdc_init(void)
+static int __init pdc202xx_init(void)
 {
 	return pci_register_driver(&pdc_pci_driver);
 }
 
-static void __exit pdc_exit(void)
+static void __exit pdc202xx_exit(void)
 {
 	pci_unregister_driver(&pdc_pci_driver);
 }
@@ -418,5 +418,5 @@ MODULE_LICENSE("GPL");
 MODULE_DEVICE_TABLE(pci, pdc);
 MODULE_VERSION(DRV_VERSION);
 
-module_init(pdc_init);
-module_exit(pdc_exit);
+module_init(pdc202xx_init);
+module_exit(pdc202xx_exit);
-- 
1.4.1.1


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

end of thread, other threads:[~2006-10-06 17:19 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-06 16:12 [PATCH] [PATCH] Rename pdc_init Matthew Wilcox
2006-10-06 16:42 ` Jeff Garzik
2006-10-06 17:03   ` Matthew Wilcox
2006-10-06 17:30   ` Alan Cox
2006-10-06 17:07     ` Matthew Wilcox
2006-10-06 17:43       ` Alan Cox

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