aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWolfram Sang <wsa@the-dreams.de>2014-10-20 10:21:24 -0400
committerWolfram Sang <wsa@the-dreams.de>2014-10-20 10:21:24 -0400
commit569c65c08a7ed67019683950409a6c10243711f5 (patch)
tree5414d8f4a1259eab72b7d989ac99fa793b7b8a17
parent2604b832b577115122d0da9ccd6dd3baef1136e6 (diff)
pinctrl: sh-pfc: drop owner assignment from platform_drivers
A platform_driver does not need to set an owner, it will be populated by the driver core. Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
-rw-r--r--drivers/pinctrl/sh-pfc/core.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/pinctrl/sh-pfc/core.c b/drivers/pinctrl/sh-pfc/core.c
index 6572c233f73d..66dc62d2156c 100644
--- a/drivers/pinctrl/sh-pfc/core.c
+++ b/drivers/pinctrl/sh-pfc/core.c
@@ -650,7 +650,6 @@ static struct platform_driver sh_pfc_driver = {
650 .id_table = sh_pfc_id_table, 650 .id_table = sh_pfc_id_table,
651 .driver = { 651 .driver = {
652 .name = DRV_NAME, 652 .name = DRV_NAME,
653 .owner = THIS_MODULE,
654 .of_match_table = of_match_ptr(sh_pfc_of_table), 653 .of_match_table = of_match_ptr(sh_pfc_of_table),
655 }, 654 },
656}; 655};