diff options
author | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2015-07-10 15:01:10 +0900 |
---|---|---|
committer | Jassi Brar <jaswinder.singh@linaro.org> | 2015-08-05 17:20:53 +0530 |
commit | 63d5e127de8287c4ae80f43cda8cb9c06e612929 (patch) | |
tree | 0ac0e94b6daa1294d099fc3a1511c6493bf1fe9a /drivers/mailbox | |
parent | 4e6b6ee253ce58aa156d7f1448d1038679b26783 (diff) | |
download | linux-stable-63d5e127de8287c4ae80f43cda8cb9c06e612929.tar.gz linux-stable-63d5e127de8287c4ae80f43cda8cb9c06e612929.tar.bz2 linux-stable-63d5e127de8287c4ae80f43cda8cb9c06e612929.zip |
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 <k.kozlowski@samsung.com>
Acked-by: Lee Jones <lee@kernel.org>
Reviewed-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
Diffstat (limited to 'drivers/mailbox')
-rw-r--r-- | drivers/mailbox/bcm2835-mailbox.c | 1 |
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, |