aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma/mpc512x_dma.c
diff options
context:
space:
mode:
authorKiran Padwal <kiran.padwal@smartplayin.com>2014-09-24 02:39:23 -0400
committerVinod Koul <vinod.koul@intel.com>2014-11-06 01:24:18 -0500
commitcd166280b7a1d74248897b48aea39217015ee8c2 (patch)
tree63d161f026d388f781626dc0a5b8b9d9ddbe17eb /drivers/dma/mpc512x_dma.c
parent1eacd4438f361256f5a524ef603f536e2c885100 (diff)
dmaengine: Remove .owner field for driver
There is no need to init .owner field. Based on the patch from Peter Griffin <peter.griffin@linaro.org> "mmc: remove .owner field for drivers using module_platform_driver" This patch removes the superflous .owner field for drivers which use the module_platform_driver API, as this is overriden in platform_driver_register anyway." Signed-off-by: Kiran Padwal <kiran.padwal@smartplayin.com> [for nvidia] Acked-by: Thierry Reding <treding@nvidia.com> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/mpc512x_dma.c')
-rw-r--r--drivers/dma/mpc512x_dma.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/dma/mpc512x_dma.c b/drivers/dma/mpc512x_dma.c
index fc08bb3af440..01bec4023de2 100644
--- a/drivers/dma/mpc512x_dma.c
+++ b/drivers/dma/mpc512x_dma.c
@@ -1092,7 +1092,6 @@ static struct platform_driver mpc_dma_driver = {
1092 .remove = mpc_dma_remove, 1092 .remove = mpc_dma_remove,
1093 .driver = { 1093 .driver = {
1094 .name = DRV_NAME, 1094 .name = DRV_NAME,
1095 .owner = THIS_MODULE,
1096 .of_match_table = mpc_dma_match, 1095 .of_match_table = mpc_dma_match,
1097 }, 1096 },
1098}; 1097};