Преглед на файлове

spi: fix platform driver hotplug/coldplug

Since 43cc71eed1250755986da4c0f9898f9a635cb3bf, the platform modalias is
prefixed with "platform:".  Add MODULE_ALIAS() to the hotpluggable SPI
platform drivers, to allow module auto loading.

[dbrownell@users.sourceforge.net: more drivers: registration fixes]
Signed-off-by: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Kay Sievers преди 17 години
родител
ревизия
7e38c3c445

+ 1 - 0
drivers/spi/atmel_spi.c

@@ -863,3 +863,4 @@ module_exit(atmel_spi_exit);
 MODULE_DESCRIPTION("Atmel AT32/AT91 SPI Controller driver");
 MODULE_DESCRIPTION("Atmel AT32/AT91 SPI Controller driver");
 MODULE_AUTHOR("Haavard Skinnemoen <hskinnemoen@atmel.com>");
 MODULE_AUTHOR("Haavard Skinnemoen <hskinnemoen@atmel.com>");
 MODULE_LICENSE("GPL");
 MODULE_LICENSE("GPL");
+MODULE_ALIAS("platform:atmel_spi");

+ 3 - 0
drivers/spi/au1550_spi.c

@@ -958,6 +958,9 @@ static int __exit au1550_spi_remove(struct platform_device *pdev)
 	return 0;
 	return 0;
 }
 }
 
 
+/* work with hotplug and coldplug */
+MODULE_ALIAS("platform:au1550-spi");
+
 static struct platform_driver au1550_spi_drv = {
 static struct platform_driver au1550_spi_drv = {
 	.remove = __exit_p(au1550_spi_remove),
 	.remove = __exit_p(au1550_spi_remove),
 	.driver = {
 	.driver = {

+ 3 - 0
drivers/spi/mpc52xx_psc_spi.c

@@ -500,6 +500,9 @@ static int __exit mpc52xx_psc_spi_remove(struct platform_device *dev)
 	return mpc52xx_psc_spi_do_remove(&dev->dev);
 	return mpc52xx_psc_spi_do_remove(&dev->dev);
 }
 }
 
 
+/* work with hotplug and coldplug */
+MODULE_ALIAS("platform:mpc52xx-psc-spi");
+
 static struct platform_driver mpc52xx_psc_spi_platform_driver = {
 static struct platform_driver mpc52xx_psc_spi_platform_driver = {
 	.remove = __exit_p(mpc52xx_psc_spi_remove),
 	.remove = __exit_p(mpc52xx_psc_spi_remove),
 	.driver = {
 	.driver = {

+ 3 - 0
drivers/spi/omap2_mcspi.c

@@ -1084,6 +1084,9 @@ static int __exit omap2_mcspi_remove(struct platform_device *pdev)
 	return 0;
 	return 0;
 }
 }
 
 
+/* work with hotplug and coldplug */
+MODULE_ALIAS("platform:omap2_mcspi");
+
 static struct platform_driver omap2_mcspi_driver = {
 static struct platform_driver omap2_mcspi_driver = {
 	.driver = {
 	.driver = {
 		.name =		"omap2_mcspi",
 		.name =		"omap2_mcspi",

+ 3 - 1
drivers/spi/omap_uwire.c

@@ -537,10 +537,12 @@ static int __exit uwire_remove(struct platform_device *pdev)
 	return status;
 	return status;
 }
 }
 
 
+/* work with hotplug and coldplug */
+MODULE_ALIAS("platform:omap_uwire");
+
 static struct platform_driver uwire_driver = {
 static struct platform_driver uwire_driver = {
 	.driver = {
 	.driver = {
 		.name		= "omap_uwire",
 		.name		= "omap_uwire",
-		.bus		= &platform_bus_type,
 		.owner		= THIS_MODULE,
 		.owner		= THIS_MODULE,
 	},
 	},
 	.remove		= __exit_p(uwire_remove),
 	.remove		= __exit_p(uwire_remove),

+ 1 - 1
drivers/spi/pxa2xx_spi.c

@@ -44,6 +44,7 @@
 MODULE_AUTHOR("Stephen Street");
 MODULE_AUTHOR("Stephen Street");
 MODULE_DESCRIPTION("PXA2xx SSP SPI Controller");
 MODULE_DESCRIPTION("PXA2xx SSP SPI Controller");
 MODULE_LICENSE("GPL");
 MODULE_LICENSE("GPL");
+MODULE_ALIAS("platform:pxa2xx-spi");
 
 
 #define MAX_BUSES 3
 #define MAX_BUSES 3
 
 
@@ -1581,7 +1582,6 @@ static int pxa2xx_spi_resume(struct platform_device *pdev)
 static struct platform_driver driver = {
 static struct platform_driver driver = {
 	.driver = {
 	.driver = {
 		.name = "pxa2xx-spi",
 		.name = "pxa2xx-spi",
-		.bus = &platform_bus_type,
 		.owner = THIS_MODULE,
 		.owner = THIS_MODULE,
 	},
 	},
 	.remove = pxa2xx_spi_remove,
 	.remove = pxa2xx_spi_remove,

+ 1 - 1
drivers/spi/spi_bfin5xx.c

@@ -1396,7 +1396,7 @@ static int bfin5xx_spi_resume(struct platform_device *pdev)
 #define bfin5xx_spi_resume NULL
 #define bfin5xx_spi_resume NULL
 #endif				/* CONFIG_PM */
 #endif				/* CONFIG_PM */
 
 
-MODULE_ALIAS("bfin-spi-master");	/* for platform bus hotplug */
+MODULE_ALIAS("platform:bfin-spi");
 static struct platform_driver bfin5xx_spi_driver = {
 static struct platform_driver bfin5xx_spi_driver = {
 	.driver	= {
 	.driver	= {
 		.name	= DRV_NAME,
 		.name	= DRV_NAME,

+ 3 - 1
drivers/spi/spi_imx.c

@@ -1722,10 +1722,12 @@ static int spi_imx_resume(struct platform_device *pdev)
 #define spi_imx_resume NULL
 #define spi_imx_resume NULL
 #endif /* CONFIG_PM */
 #endif /* CONFIG_PM */
 
 
+/* work with hotplug and coldplug */
+MODULE_ALIAS("platform:spi_imx");
+
 static struct platform_driver driver = {
 static struct platform_driver driver = {
 	.driver = {
 	.driver = {
 		.name = "spi_imx",
 		.name = "spi_imx",
-		.bus = &platform_bus_type,
 		.owner = THIS_MODULE,
 		.owner = THIS_MODULE,
 	},
 	},
 	.remove = __exit_p(spi_imx_remove),
 	.remove = __exit_p(spi_imx_remove),

+ 3 - 2
drivers/spi/spi_mpc83xx.c

@@ -523,11 +523,12 @@ static int __exit mpc83xx_spi_remove(struct platform_device *dev)
 	return 0;
 	return 0;
 }
 }
 
 
-MODULE_ALIAS("mpc83xx_spi");			/* for platform bus hotplug */
+MODULE_ALIAS("platform:mpc83xx_spi");
 static struct platform_driver mpc83xx_spi_driver = {
 static struct platform_driver mpc83xx_spi_driver = {
 	.remove = __exit_p(mpc83xx_spi_remove),
 	.remove = __exit_p(mpc83xx_spi_remove),
 	.driver = {
 	.driver = {
-		   .name = "mpc83xx_spi",
+		.name = "mpc83xx_spi",
+		.owner = THIS_MODULE,
 	},
 	},
 };
 };
 
 

+ 1 - 1
drivers/spi/spi_s3c24xx.c

@@ -415,7 +415,7 @@ static int s3c24xx_spi_resume(struct platform_device *pdev)
 #define s3c24xx_spi_resume  NULL
 #define s3c24xx_spi_resume  NULL
 #endif
 #endif
 
 
-MODULE_ALIAS("s3c2410_spi");			/* for platform bus hotplug */
+MODULE_ALIAS("platform:s3c2410-spi");
 static struct platform_driver s3c24xx_spidrv = {
 static struct platform_driver s3c24xx_spidrv = {
 	.remove		= __exit_p(s3c24xx_spi_remove),
 	.remove		= __exit_p(s3c24xx_spi_remove),
 	.suspend	= s3c24xx_spi_suspend,
 	.suspend	= s3c24xx_spi_suspend,

+ 2 - 0
drivers/spi/spi_s3c24xx_gpio.c

@@ -168,6 +168,8 @@ static int s3c2410_spigpio_remove(struct platform_device *dev)
 #define s3c2410_spigpio_suspend NULL
 #define s3c2410_spigpio_suspend NULL
 #define s3c2410_spigpio_resume NULL
 #define s3c2410_spigpio_resume NULL
 
 
+/* work with hotplug and coldplug */
+MODULE_ALIAS("platform:spi_s3c24xx_gpio");
 
 
 static struct platform_driver s3c2410_spigpio_drv = {
 static struct platform_driver s3c2410_spigpio_drv = {
 	.probe		= s3c2410_spigpio_probe,
 	.probe		= s3c2410_spigpio_probe,

+ 1 - 0
drivers/spi/spi_sh_sci.c

@@ -203,3 +203,4 @@ module_exit(sh_sci_spi_exit);
 MODULE_DESCRIPTION("SH SCI SPI Driver");
 MODULE_DESCRIPTION("SH SCI SPI Driver");
 MODULE_AUTHOR("Magnus Damm <damm@opensource.se>");
 MODULE_AUTHOR("Magnus Damm <damm@opensource.se>");
 MODULE_LICENSE("GPL");
 MODULE_LICENSE("GPL");
+MODULE_ALIAS("platform:spi_sh_sci");

+ 3 - 0
drivers/spi/spi_txx9.c

@@ -450,6 +450,9 @@ static int __exit txx9spi_remove(struct platform_device *dev)
 	return 0;
 	return 0;
 }
 }
 
 
+/* work with hotplug and coldplug */
+MODULE_ALIAS("platform:spi_txx9");
+
 static struct platform_driver txx9spi_driver = {
 static struct platform_driver txx9spi_driver = {
 	.remove = __exit_p(txx9spi_remove),
 	.remove = __exit_p(txx9spi_remove),
 	.driver = {
 	.driver = {

+ 3 - 0
drivers/spi/xilinx_spi.c

@@ -408,6 +408,9 @@ static int __devexit xilinx_spi_remove(struct platform_device *dev)
 	return 0;
 	return 0;
 }
 }
 
 
+/* work with hotplug and coldplug */
+MODULE_ALIAS("platform:" XILINX_SPI_NAME);
+
 static struct platform_driver xilinx_spi_driver = {
 static struct platform_driver xilinx_spi_driver = {
 	.probe	= xilinx_spi_probe,
 	.probe	= xilinx_spi_probe,
 	.remove	= __devexit_p(xilinx_spi_remove),
 	.remove	= __devexit_p(xilinx_spi_remove),