OSDN Git Service

staging: mt7621-spi: Remove redundant owner assignment
authorChristian Lütke-Stetzkamp <christian@lkamp.de>
Wed, 18 Apr 2018 17:37:32 +0000 (19:37 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 23 Apr 2018 13:37:13 +0000 (15:37 +0200)
Remove the owner assignment form the platform driver as
platform_driver_register() already initializes the owner.
Found using coccinelle.

Signed-off-by: Christian Lütke-Stetzkamp <christian@lkamp.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/mt7621-spi/spi-mt7621.c

index d95e0b3..d9b55d2 100644 (file)
@@ -475,7 +475,6 @@ MODULE_ALIAS("platform:" DRIVER_NAME);
 static struct platform_driver mt7621_spi_driver = {
        .driver = {
                .name = DRIVER_NAME,
-               .owner = THIS_MODULE,
                .of_match_table = mt7621_spi_match,
        },
        .probe = mt7621_spi_probe,