From 43401898fde586bdeb73ac2c11d4f949fcba9f77 Mon Sep 17 00:00:00 2001 From: Krzysztof Kozlowski Date: Tue, 5 May 2026 12:27:52 +0200 Subject: [PATCH] power: supply: cros_charge-control: Move MODULE_DEVICE_TABLE next to the table itself MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit By convention MODULE_DEVICE_TABLE() immediately follows the ID table it exports, because this is easier to read and verify. It also makes more sense since #ifdef for ACPI or OF could hide both of them. Most of the privers already have this correctly placed, so adjust the missing ones. No functional impact. Signed-off-by: Krzysztof Kozlowski Acked-by: Thomas Weißschuh Reviewed-by: Tzung-Bi Shih Link: https://patch.msgid.link/20260505102752.182089-2-krzysztof.kozlowski@oss.qualcomm.com Signed-off-by: Sebastian Reichel --- drivers/power/supply/cros_charge-control.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/power/supply/cros_charge-control.c b/drivers/power/supply/cros_charge-control.c index b489325be816..e1b8f3b1b7de 100644 --- a/drivers/power/supply/cros_charge-control.c +++ b/drivers/power/supply/cros_charge-control.c @@ -323,6 +323,7 @@ static const struct platform_device_id cros_chctl_id[] = { { .name = "cros-charge-control" }, { } }; +MODULE_DEVICE_TABLE(platform, cros_chctl_id); static struct platform_driver cros_chctl_driver = { .driver.name = "cros-charge-control", @@ -331,7 +332,6 @@ static struct platform_driver cros_chctl_driver = { }; module_platform_driver(cros_chctl_driver); -MODULE_DEVICE_TABLE(platform, cros_chctl_id); MODULE_DESCRIPTION("ChromeOS EC charge control"); MODULE_AUTHOR("Thomas Weißschuh "); MODULE_LICENSE("GPL");