]> git.ipfire.org Git - thirdparty/linux.git/commit
platform/x86/amd: hfi: Remove redundant assignment to .owner
authorKuan-Wei Chiu <visitorckw@gmail.com>
Sat, 11 Oct 2025 06:38:37 +0000 (14:38 +0800)
committerIlpo Järvinen <ilpo.jarvinen@linux.intel.com>
Wed, 15 Oct 2025 08:38:28 +0000 (11:38 +0300)
commit0254329897495c42646144376230add710078937
tree6cc797b41cc5102d79deb651d73d719202f4ef03
parent32647324c77012b7aed7ef48752909510d3c7ec7
platform/x86/amd: hfi: Remove redundant assignment to .owner

The coccicheck tool reports the following warning for this driver:

./hfi.c:509:3-8: No need to set .owner here. The core will do it.

The manual assignment of .owner = THIS_MODULE; in the platform_driver
struct is redundant. The platform_driver_register() function, which is
called to register the driver, is a macro that automatically sets the
driver's owner to THIS_MODULE.

The driver core handles this assignment internally, making the explicit
initialization in the struct definition unnecessary. Remove the
unnecessary line.

Signed-off-by: Kuan-Wei Chiu <visitorckw@gmail.com>
Reviewed-by: Mario Limonciello <mario.limonciello@amd.com>
Link: https://patch.msgid.link/20251011063837.2318535-3-visitorckw@gmail.com
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
drivers/platform/x86/amd/hfi/hfi.c