OSDN Git Service

dmaengine: fix platform_no_drv_owner.cocci warnings
authorkbuild test robot <fengguang.wu@intel.com>
Sat, 11 Apr 2015 18:18:34 +0000 (02:18 +0800)
committerVinod Koul <vinod.koul@intel.com>
Fri, 17 Apr 2015 18:13:18 +0000 (23:43 +0530)
drivers/dma/xgene-dma.c:2079:3-8: No need to set .owner here. The core will do it.

 Remove .owner field if calls are used which set it automatically

Generated by: scripts/coccinelle/api/platform_no_drv_owner.cocci

CC: Rameshwar Prasad Sahu <rsahu@apm.com>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
drivers/dma/xgene-dma.c

index 8a36946..f52e375 100755 (executable)
@@ -2076,7 +2076,6 @@ static struct platform_driver xgene_dma_driver = {
        .remove = xgene_dma_remove,
        .driver = {
                .name = "X-Gene-DMA",
-               .owner = THIS_MODULE,
                .of_match_table = xgene_dma_of_match_ptr,
        },
 };