spi: fix platform driver hotplug/coldplug
Since 43cc71eed1
, 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>
This commit is contained in:
parent
8d1c98b0b5
commit
7e38c3c445
|
@ -863,3 +863,4 @@ module_exit(atmel_spi_exit);
|
|||
MODULE_DESCRIPTION("Atmel AT32/AT91 SPI Controller driver");
|
||||
MODULE_AUTHOR("Haavard Skinnemoen <hskinnemoen@atmel.com>");
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_ALIAS("platform:atmel_spi");
|
||||
|
|
|
@ -958,6 +958,9 @@ static int __exit au1550_spi_remove(struct platform_device *pdev)
|
|||
return 0;
|
||||
}
|
||||
|
||||
/* work with hotplug and coldplug */
|
||||
MODULE_ALIAS("platform:au1550-spi");
|
||||
|
||||
static struct platform_driver au1550_spi_drv = {
|
||||
.remove = __exit_p(au1550_spi_remove),
|
||||
.driver = {
|
||||
|
|
|
@ -500,6 +500,9 @@ static int __exit mpc52xx_psc_spi_remove(struct platform_device *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 = {
|
||||
.remove = __exit_p(mpc52xx_psc_spi_remove),
|
||||
.driver = {
|
||||
|
|
|
@ -1084,6 +1084,9 @@ static int __exit omap2_mcspi_remove(struct platform_device *pdev)
|
|||
return 0;
|
||||
}
|
||||
|
||||
/* work with hotplug and coldplug */
|
||||
MODULE_ALIAS("platform:omap2_mcspi");
|
||||
|
||||
static struct platform_driver omap2_mcspi_driver = {
|
||||
.driver = {
|
||||
.name = "omap2_mcspi",
|
||||
|
|
|
@ -537,10 +537,12 @@ static int __exit uwire_remove(struct platform_device *pdev)
|
|||
return status;
|
||||
}
|
||||
|
||||
/* work with hotplug and coldplug */
|
||||
MODULE_ALIAS("platform:omap_uwire");
|
||||
|
||||
static struct platform_driver uwire_driver = {
|
||||
.driver = {
|
||||
.name = "omap_uwire",
|
||||
.bus = &platform_bus_type,
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.remove = __exit_p(uwire_remove),
|
||||
|
|
|
@ -44,6 +44,7 @@
|
|||
MODULE_AUTHOR("Stephen Street");
|
||||
MODULE_DESCRIPTION("PXA2xx SSP SPI Controller");
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_ALIAS("platform:pxa2xx-spi");
|
||||
|
||||
#define MAX_BUSES 3
|
||||
|
||||
|
@ -1581,7 +1582,6 @@ static int pxa2xx_spi_resume(struct platform_device *pdev)
|
|||
static struct platform_driver driver = {
|
||||
.driver = {
|
||||
.name = "pxa2xx-spi",
|
||||
.bus = &platform_bus_type,
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.remove = pxa2xx_spi_remove,
|
||||
|
|
|
@ -1396,7 +1396,7 @@ static int bfin5xx_spi_resume(struct platform_device *pdev)
|
|||
#define bfin5xx_spi_resume NULL
|
||||
#endif /* CONFIG_PM */
|
||||
|
||||
MODULE_ALIAS("bfin-spi-master"); /* for platform bus hotplug */
|
||||
MODULE_ALIAS("platform:bfin-spi");
|
||||
static struct platform_driver bfin5xx_spi_driver = {
|
||||
.driver = {
|
||||
.name = DRV_NAME,
|
||||
|
|
|
@ -1722,10 +1722,12 @@ static int spi_imx_resume(struct platform_device *pdev)
|
|||
#define spi_imx_resume NULL
|
||||
#endif /* CONFIG_PM */
|
||||
|
||||
/* work with hotplug and coldplug */
|
||||
MODULE_ALIAS("platform:spi_imx");
|
||||
|
||||
static struct platform_driver driver = {
|
||||
.driver = {
|
||||
.name = "spi_imx",
|
||||
.bus = &platform_bus_type,
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.remove = __exit_p(spi_imx_remove),
|
||||
|
|
|
@ -523,11 +523,12 @@ static int __exit mpc83xx_spi_remove(struct platform_device *dev)
|
|||
return 0;
|
||||
}
|
||||
|
||||
MODULE_ALIAS("mpc83xx_spi"); /* for platform bus hotplug */
|
||||
MODULE_ALIAS("platform:mpc83xx_spi");
|
||||
static struct platform_driver mpc83xx_spi_driver = {
|
||||
.remove = __exit_p(mpc83xx_spi_remove),
|
||||
.driver = {
|
||||
.name = "mpc83xx_spi",
|
||||
.name = "mpc83xx_spi",
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
};
|
||||
|
||||
|
|
|
@ -415,7 +415,7 @@ static int s3c24xx_spi_resume(struct platform_device *pdev)
|
|||
#define s3c24xx_spi_resume NULL
|
||||
#endif
|
||||
|
||||
MODULE_ALIAS("s3c2410_spi"); /* for platform bus hotplug */
|
||||
MODULE_ALIAS("platform:s3c2410-spi");
|
||||
static struct platform_driver s3c24xx_spidrv = {
|
||||
.remove = __exit_p(s3c24xx_spi_remove),
|
||||
.suspend = s3c24xx_spi_suspend,
|
||||
|
|
|
@ -168,6 +168,8 @@ static int s3c2410_spigpio_remove(struct platform_device *dev)
|
|||
#define s3c2410_spigpio_suspend NULL
|
||||
#define s3c2410_spigpio_resume NULL
|
||||
|
||||
/* work with hotplug and coldplug */
|
||||
MODULE_ALIAS("platform:spi_s3c24xx_gpio");
|
||||
|
||||
static struct platform_driver s3c2410_spigpio_drv = {
|
||||
.probe = s3c2410_spigpio_probe,
|
||||
|
|
|
@ -203,3 +203,4 @@ module_exit(sh_sci_spi_exit);
|
|||
MODULE_DESCRIPTION("SH SCI SPI Driver");
|
||||
MODULE_AUTHOR("Magnus Damm <damm@opensource.se>");
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_ALIAS("platform:spi_sh_sci");
|
||||
|
|
|
@ -450,6 +450,9 @@ static int __exit txx9spi_remove(struct platform_device *dev)
|
|||
return 0;
|
||||
}
|
||||
|
||||
/* work with hotplug and coldplug */
|
||||
MODULE_ALIAS("platform:spi_txx9");
|
||||
|
||||
static struct platform_driver txx9spi_driver = {
|
||||
.remove = __exit_p(txx9spi_remove),
|
||||
.driver = {
|
||||
|
|
|
@ -408,6 +408,9 @@ static int __devexit xilinx_spi_remove(struct platform_device *dev)
|
|||
return 0;
|
||||
}
|
||||
|
||||
/* work with hotplug and coldplug */
|
||||
MODULE_ALIAS("platform:" XILINX_SPI_NAME);
|
||||
|
||||
static struct platform_driver xilinx_spi_driver = {
|
||||
.probe = xilinx_spi_probe,
|
||||
.remove = __devexit_p(xilinx_spi_remove),
|
||||
|
|
Loading…
Reference in New Issue