|
@@ -18,8 +18,6 @@
|
|
#include <plat/mailbox.h>
|
|
#include <plat/mailbox.h>
|
|
#include <mach/irqs.h>
|
|
#include <mach/irqs.h>
|
|
|
|
|
|
-#define DRV_NAME "omap2-mailbox"
|
|
|
|
-
|
|
|
|
#define MAILBOX_REVISION 0x000
|
|
#define MAILBOX_REVISION 0x000
|
|
#define MAILBOX_SYSCONFIG 0x010
|
|
#define MAILBOX_SYSCONFIG 0x010
|
|
#define MAILBOX_SYSSTATUS 0x014
|
|
#define MAILBOX_SYSSTATUS 0x014
|
|
@@ -451,7 +449,7 @@ static struct platform_driver omap2_mbox_driver = {
|
|
.probe = omap2_mbox_probe,
|
|
.probe = omap2_mbox_probe,
|
|
.remove = __devexit_p(omap2_mbox_remove),
|
|
.remove = __devexit_p(omap2_mbox_remove),
|
|
.driver = {
|
|
.driver = {
|
|
- .name = DRV_NAME,
|
|
|
|
|
|
+ .name = "omap-mailbox",
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
|
|
@@ -472,4 +470,4 @@ MODULE_LICENSE("GPL v2");
|
|
MODULE_DESCRIPTION("omap mailbox: omap2/3/4 architecture specific functions");
|
|
MODULE_DESCRIPTION("omap mailbox: omap2/3/4 architecture specific functions");
|
|
MODULE_AUTHOR("Hiroshi DOYU <Hiroshi.DOYU@nokia.com>");
|
|
MODULE_AUTHOR("Hiroshi DOYU <Hiroshi.DOYU@nokia.com>");
|
|
MODULE_AUTHOR("Paul Mundt");
|
|
MODULE_AUTHOR("Paul Mundt");
|
|
-MODULE_ALIAS("platform:"DRV_NAME);
|
|
|
|
|
|
+MODULE_ALIAS("platform:omap2-mailbox");
|