]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
staging: gpib: Remove unnecessary .owner assignment
authorYu-Chun Lin <eleanor15x@gmail.com>
Sun, 19 Jan 2025 09:22:47 +0000 (17:22 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 3 Feb 2025 15:06:20 +0000 (16:06 +0100)
The driver core automatically sets the '.owner' field, so there is no
need to assign 'THIS_MODULE' explicitly.

This change fixes the warning reported by the kernel test robot:

cocci warnings: (new ones prefixed by >>)
>> drivers/staging/gpib/eastwood/fluke_gpib.c:1145:3-8: No need to set .owner here. The core will do it.

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202501182304.q5PrJvhd-lkp@intel.com/
Signed-off-by: Yu-Chun Lin <eleanor15x@gmail.com>
Link: https://lore.kernel.org/r/20250119092247.1873176-1-eleanor15x@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/gpib/eastwood/fluke_gpib.c

index 0304c5de4ccdd2983c58006c17302b30ff8422e1..d5b1a03abf117b8e28ee48c64ca6a67387d381ca 100644 (file)
@@ -1143,7 +1143,6 @@ MODULE_DEVICE_TABLE(of, fluke_gpib_of_match);
 static struct platform_driver fluke_gpib_platform_driver = {
        .driver = {
                .name = "fluke_gpib",
-               .owner = THIS_MODULE,
                .of_match_table = fluke_gpib_of_match,
        },
        .probe = &fluke_gpib_probe