diff options
| author | Rosen Penev | 2024-08-15 02:59:19 +0000 |
|---|---|---|
| committer | Robert Marko | 2024-08-25 11:14:07 +0000 |
| commit | 4f2dadcf95e1ba18bbb2d59f3c7e20e3d4da5208 (patch) | |
| tree | c8297cf52369fb6608536242828544948f4061f2 | |
| parent | 7a7ea98400a80d762e1f6e6d29ceb25a13a997e0 (diff) | |
| download | openwrt-4f2dadcf95e1ba18bbb2d59f3c7e20e3d4da5208.tar.gz | |
ramips: mt7621_nand: don't set owner
Found with coccinelle:
No need to set .owner here. The core will do it.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/16217
Signed-off-by: Robert Marko <robimarko@gmail.com>
| -rw-r--r-- | target/linux/ramips/files/drivers/mtd/nand/raw/mt7621_nand.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/target/linux/ramips/files/drivers/mtd/nand/raw/mt7621_nand.c b/target/linux/ramips/files/drivers/mtd/nand/raw/mt7621_nand.c index 880c8578bd..fba389e5a9 100644 --- a/target/linux/ramips/files/drivers/mtd/nand/raw/mt7621_nand.c +++ b/target/linux/ramips/files/drivers/mtd/nand/raw/mt7621_nand.c @@ -1248,7 +1248,6 @@ static int mt7621_nfc_init_chip(struct mt7621_nfc *nfc) nand->ecc.write_oob_raw = mt7621_nfc_write_oob_raw; mtd = nand_to_mtd(nand); - mtd->owner = THIS_MODULE; mtd->dev.parent = nfc->dev; mtd->name = MT7621_NFC_NAME; mtd_set_ooblayout(mtd, &mt7621_nfc_ooblayout_ops); @@ -1338,7 +1337,6 @@ static struct platform_driver mt7621_nfc_driver = { .remove = mt7621_nfc_remove, .driver = { .name = MT7621_NFC_NAME, - .owner = THIS_MODULE, .of_match_table = mt7621_nfc_id_table, }, }; |