diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2020-12-11 16:35:31 +0300 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2020-12-11 18:42:27 +0300 |
commit | fb42dce4d7b56aac31bd7ef47228515eae9ac968 (patch) | |
tree | e1437c7fb92dd6e1122727aa66c2abda259623e0 /drivers/hwmon | |
parent | 15d4a6f736c446231907e9f04ce6fc4b57c32aa2 (diff) | |
download | linux-fb42dce4d7b56aac31bd7ef47228515eae9ac968.tar.xz |
hwmon: (xgene) Drop bogus __refdata annotation
As the X-Gene hardware monitoring driver does not have any code or data
located in initmem, there is no need to annotate the xgene_hwmon_driver
structure with __refdata. Drop the annotation, to avoid suppressing
future section warnings.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Link: https://lore.kernel.org/r/20201211133531.2970027-1-geert+renesas@glider.be
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r-- | drivers/hwmon/xgene-hwmon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/xgene-hwmon.c b/drivers/hwmon/xgene-hwmon.c index f2a5af239c95..1489e83cb0c4 100644 --- a/drivers/hwmon/xgene-hwmon.c +++ b/drivers/hwmon/xgene-hwmon.c @@ -784,7 +784,7 @@ static const struct of_device_id xgene_hwmon_of_match[] = { }; MODULE_DEVICE_TABLE(of, xgene_hwmon_of_match); -static struct platform_driver xgene_hwmon_driver __refdata = { +static struct platform_driver xgene_hwmon_driver = { .probe = xgene_hwmon_probe, .remove = xgene_hwmon_remove, .driver = { |