diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:21:42 +0200 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:21:42 +0200 |
commit | bbc379834091670d540cae8d7d1e2240b68bb0e8 (patch) | |
tree | 97f49be3f605cb5a9a311646f158d1668466586d /drivers/thermal/imx_thermal.c | |
parent | staging: ozwpan: drop owner assignment from platform_drivers (diff) | |
download | linux-bbc379834091670d540cae8d7d1e2240b68bb0e8.tar.xz linux-bbc379834091670d540cae8d7d1e2240b68bb0e8.zip |
thermal: 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>
Diffstat (limited to 'drivers/thermal/imx_thermal.c')
-rw-r--r-- | drivers/thermal/imx_thermal.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/thermal/imx_thermal.c b/drivers/thermal/imx_thermal.c index 2c516f2eebed..9f34fdd51250 100644 --- a/drivers/thermal/imx_thermal.c +++ b/drivers/thermal/imx_thermal.c @@ -559,7 +559,6 @@ MODULE_DEVICE_TABLE(of, of_imx_thermal_match); static struct platform_driver imx_thermal = { .driver = { .name = "imx_thermal", - .owner = THIS_MODULE, .pm = &imx_thermal_pm_ops, .of_match_table = of_imx_thermal_match, }, |