aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/nzxt-smart2.c
diff options
context:
space:
mode:
authorColin Ian King <colin.i.king@gmail.com>2022-01-09 19:45:58 +0000
committerGuenter Roeck <linux@roeck-us.net>2022-01-09 17:10:58 -0800
commit00f5117c5f785b95b13663e52dcdcf684a47d4e3 (patch)
tree336e9c0755b0bcf5397c75585cdd156011f47b1b /drivers/hwmon/nzxt-smart2.c
parenthwmon: (xgene-hwmon) Add free before exiting xgene_hwmon_probe (diff)
downloadlinux-dev-00f5117c5f785b95b13663e52dcdcf684a47d4e3.tar.xz
linux-dev-00f5117c5f785b95b13663e52dcdcf684a47d4e3.zip
hwmon: (nzxt-smart2) make array detect_fans_report static const
Don't populate the read-only array detect_fans_report on the stack but instead it static const. Also makes the object code a little smaller. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Link: https://lore.kernel.org/r/20220109194558.45811-1-colin.i.king@gmail.com Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to '')
-rw-r--r--drivers/hwmon/nzxt-smart2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/nzxt-smart2.c b/drivers/hwmon/nzxt-smart2.c
index 6e67da766969..dd892ff5a3e8 100644
--- a/drivers/hwmon/nzxt-smart2.c
+++ b/drivers/hwmon/nzxt-smart2.c
@@ -583,7 +583,7 @@ static int set_update_interval(struct drvdata *drvdata, long val)
static int init_device(struct drvdata *drvdata, long update_interval)
{
int ret;
- u8 detect_fans_report[] = {
+ static const u8 detect_fans_report[] = {
OUTPUT_REPORT_ID_INIT_COMMAND,
INIT_COMMAND_DETECT_FANS,
};