diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:22:15 +0200 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:22:15 +0200 |
commit | c9e2faeb20f8c9e1e8cf789fa9860f2a491e5a2e (patch) | |
tree | e92ed9b615e16b4cd0965aef427214bbfbd3d2c8 /sound/soc/ux500 | |
parent | 1cfc291a30c29082992d69dc203c5213f90d57ed (diff) | |
download | blackbird-obmc-linux-c9e2faeb20f8c9e1e8cf789fa9860f2a491e5a2e.tar.gz blackbird-obmc-linux-c9e2faeb20f8c9e1e8cf789fa9860f2a491e5a2e.zip |
ASoC: ux500: 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 'sound/soc/ux500')
-rw-r--r-- | sound/soc/ux500/mop500.c | 1 | ||||
-rw-r--r-- | sound/soc/ux500/ux500_msp_dai.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/sound/soc/ux500/mop500.c b/sound/soc/ux500/mop500.c index b3b66aa98dce..2ba0d42b108f 100644 --- a/sound/soc/ux500/mop500.c +++ b/sound/soc/ux500/mop500.c @@ -159,7 +159,6 @@ static const struct of_device_id snd_soc_mop500_match[] = { static struct platform_driver snd_soc_mop500_driver = { .driver = { - .owner = THIS_MODULE, .name = "snd-soc-mop500", .of_match_table = snd_soc_mop500_match, }, diff --git a/sound/soc/ux500/ux500_msp_dai.c b/sound/soc/ux500/ux500_msp_dai.c index 5f4807b2c007..978f2d7316b0 100644 --- a/sound/soc/ux500/ux500_msp_dai.c +++ b/sound/soc/ux500/ux500_msp_dai.c @@ -856,7 +856,6 @@ static const struct of_device_id ux500_msp_i2s_match[] = { static struct platform_driver msp_i2s_driver = { .driver = { .name = "ux500-msp-i2s", - .owner = THIS_MODULE, .of_match_table = ux500_msp_i2s_match, }, .probe = ux500_msp_drv_probe, |