spi: npcm: fix platform_no_drv_owner.cocci warnings
drivers/spi/spi-npcm-pspi.c:470: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
Fixes: 2a22f1b30c
("spi: npcm: add NPCM PSPI controller driver")
CC: Tomer Maimon <tmaimon77@gmail.com>
Signed-off-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
22bf6cd2ca
commit
7986e2273c
|
@ -467,7 +467,6 @@ static struct platform_driver npcm_pspi_driver = {
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = DRIVER_NAME,
|
.name = DRIVER_NAME,
|
||||||
.of_match_table = npcm_pspi_match,
|
.of_match_table = npcm_pspi_match,
|
||||||
.owner = THIS_MODULE,
|
|
||||||
},
|
},
|
||||||
.probe = npcm_pspi_probe,
|
.probe = npcm_pspi_probe,
|
||||||
.remove = npcm_pspi_remove,
|
.remove = npcm_pspi_remove,
|
||||||
|
|
Loading…
Reference in New Issue