Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 93013
b: refs/heads/master
c: 41d867c
h: refs/heads/master
i:
  93011: d9cef7b
v: v3
  • Loading branch information
Kay Sievers authored and David Woodhouse committed Apr 22, 2008
1 parent 5217946 commit 2be5d6b
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c27e9b80bee039cfefa51c7af08b01eaab3dfb61
refs/heads/master: 41d867c9ac852ce17069f8ae680f25877be97942
1 change: 1 addition & 0 deletions trunk/drivers/mtd/maps/bast-flash.c
Original file line number Diff line number Diff line change
Expand Up @@ -223,3 +223,4 @@ module_exit(bast_flash_exit);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
MODULE_DESCRIPTION("BAST MTD Map driver");
MODULE_ALIAS("platform:bast-nor");
2 changes: 2 additions & 0 deletions trunk/drivers/mtd/maps/integrator-flash.c
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ static struct platform_driver armflash_driver = {
.remove = armflash_remove,
.driver = {
.name = "armflash",
.owner = THIS_MODULE,
},
};

Expand All @@ -209,3 +210,4 @@ module_exit(armflash_exit);
MODULE_AUTHOR("ARM Ltd");
MODULE_DESCRIPTION("ARM Integrator CFI map driver");
MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:armflash");
3 changes: 2 additions & 1 deletion trunk/drivers/mtd/maps/ixp2000.c
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,7 @@ static struct platform_driver ixp2000_flash_driver = {
.remove = ixp2000_flash_remove,
.driver = {
.name = "IXP2000-Flash",
.owner = THIS_MODULE,
},
};

Expand All @@ -270,4 +271,4 @@ module_init(ixp2000_flash_init);
module_exit(ixp2000_flash_exit);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Deepak Saxena <dsaxena@plexity.net>");

MODULE_ALIAS("platform:IXP2000-Flash");
2 changes: 2 additions & 0 deletions trunk/drivers/mtd/maps/ixp4xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,7 @@ static struct platform_driver ixp4xx_flash_driver = {
.remove = ixp4xx_flash_remove,
.driver = {
.name = "IXP4XX-Flash",
.owner = THIS_MODULE,
},
};

Expand All @@ -295,3 +296,4 @@ module_exit(ixp4xx_flash_exit);
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("MTD map driver for Intel IXP4xx systems");
MODULE_AUTHOR("Deepak Saxena");
MODULE_ALIAS("platform:IXP4XX-Flash");
3 changes: 2 additions & 1 deletion trunk/drivers/mtd/maps/omap_nor.c
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ static struct platform_driver omapflash_driver = {
.remove = __devexit_p(omapflash_remove),
.driver = {
.name = "omapflash",
.owner = THIS_MODULE,
},
};

Expand All @@ -174,4 +175,4 @@ module_exit(omapflash_exit);

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("MTD NOR map driver for TI OMAP boards");

MODULE_ALIAS("platform:omapflash");
8 changes: 8 additions & 0 deletions trunk/drivers/mtd/maps/physmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ static struct platform_driver physmap_flash_driver = {
.shutdown = physmap_flash_shutdown,
.driver = {
.name = "physmap-flash",
.owner = THIS_MODULE,
},
};

Expand Down Expand Up @@ -319,3 +320,10 @@ module_exit(physmap_exit);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
MODULE_DESCRIPTION("Generic configurable MTD map driver");

/* legacy platform drivers can't hotplug or coldplg */
#ifndef PHYSMAP_COMPAT
/* work with hotplug and coldplug */
MODULE_ALIAS("platform:physmap-flash");
#endif

3 changes: 3 additions & 0 deletions trunk/drivers/mtd/maps/plat-ram.c
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,9 @@ static int platram_probe(struct platform_device *pdev)

/* device driver info */

/* work with hotplug and coldplug */
MODULE_ALIAS("platform:mtd-ram");

static struct platform_driver platram_driver = {
.probe = platram_probe,
.remove = platram_remove,
Expand Down
2 changes: 2 additions & 0 deletions trunk/drivers/mtd/maps/sa1100-flash.c
Original file line number Diff line number Diff line change
Expand Up @@ -456,6 +456,7 @@ static struct platform_driver sa1100_mtd_driver = {
.shutdown = sa1100_mtd_shutdown,
.driver = {
.name = "flash",
.owner = THIS_MODULE,
},
};

Expand All @@ -475,3 +476,4 @@ module_exit(sa1100_mtd_exit);
MODULE_AUTHOR("Nicolas Pitre");
MODULE_DESCRIPTION("SA1100 CFI map driver");
MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:flash");

0 comments on commit 2be5d6b

Please sign in to comment.