From: Wolfram Sang Date: Mon, 20 Oct 2014 14:21:34 +0000 (+0200) Subject: soc: qcom: drop owner assignment from platform_drivers X-Git-Tag: v3.19-rc1~78^2~25^2~91 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ea84768e9a96f1add072456bce103ce347ec87ed;p=karo-tx-linux.git soc: qcom: 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 --- diff --git a/drivers/soc/qcom/qcom_gsbi.c b/drivers/soc/qcom/qcom_gsbi.c index 7e1f120f2b32..729425ddfd3e 100644 --- a/drivers/soc/qcom/qcom_gsbi.c +++ b/drivers/soc/qcom/qcom_gsbi.c @@ -91,7 +91,6 @@ MODULE_DEVICE_TABLE(of, gsbi_dt_match); static struct platform_driver gsbi_driver = { .driver = { .name = "gsbi", - .owner = THIS_MODULE, .of_match_table = gsbi_dt_match, }, .probe = gsbi_probe,