aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <[email protected]>2015-07-10 15:01:10 +0900
committerJassi Brar <[email protected]>2015-08-05 17:20:53 +0530
commit63d5e127de8287c4ae80f43cda8cb9c06e612929 (patch)
tree0ac0e94b6daa1294d099fc3a1511c6493bf1fe9a
parent4e6b6ee253ce58aa156d7f1448d1038679b26783 (diff)
mailbox: Drop owner assignment from platform_driver
platform_driver does not need to set an owner because platform_driver_register() will set it. Signed-off-by: Krzysztof Kozlowski <[email protected]> Acked-by: Lee Jones <[email protected]> Reviewed-by: Eric Anholt <[email protected]> Signed-off-by: Jassi Brar <[email protected]>
-rw-r--r--drivers/mailbox/bcm2835-mailbox.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/mailbox/bcm2835-mailbox.c b/drivers/mailbox/bcm2835-mailbox.c
index 0b47dd42f3bd..cfb4b4496dd9 100644
--- a/drivers/mailbox/bcm2835-mailbox.c
+++ b/drivers/mailbox/bcm2835-mailbox.c
@@ -204,7 +204,6 @@ MODULE_DEVICE_TABLE(of, bcm2835_mbox_of_match);
static struct platform_driver bcm2835_mbox_driver = {
.driver = {
.name = "bcm2835-mbox",
- .owner = THIS_MODULE,
.of_match_table = bcm2835_mbox_of_match,
},
.probe = bcm2835_mbox_probe,