Commit 1ad35f6e authored by Bhumika Goyal's avatar Bhumika Goyal Committed by Michael Ellerman

drivers/macintosh: Make wf_control_ops and wf_pid_param const

Make wf_control_ops const as they are only stored in the ops field of a
wf_control structure, which is const.
Make wf_pid_param const as they are only used during a copy operation.
Done using Coccinelle.
Signed-off-by: default avatarBhumika Goyal <bhumirks@gmail.com>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent b3376dcc
...@@ -63,7 +63,7 @@ static s32 clamp_max(struct wf_control *ct) ...@@ -63,7 +63,7 @@ static s32 clamp_max(struct wf_control *ct)
return 1; return 1;
} }
static struct wf_control_ops clamp_ops = { static const struct wf_control_ops clamp_ops = {
.set_value = clamp_set, .set_value = clamp_set,
.get_value = clamp_get, .get_value = clamp_get,
.get_min = clamp_min, .get_min = clamp_min,
......
...@@ -338,7 +338,7 @@ static int cpu_setup_pid(int cpu) ...@@ -338,7 +338,7 @@ static int cpu_setup_pid(int cpu)
} }
/* Backside/U3 fan */ /* Backside/U3 fan */
static struct wf_pid_param backside_param = { static const struct wf_pid_param backside_param = {
.interval = 1, .interval = 1,
.history_len = 2, .history_len = 2,
.gd = 0x00500000, .gd = 0x00500000,
...@@ -351,7 +351,7 @@ static struct wf_pid_param backside_param = { ...@@ -351,7 +351,7 @@ static struct wf_pid_param backside_param = {
}; };
/* DIMMs temperature (clamp the backside fan) */ /* DIMMs temperature (clamp the backside fan) */
static struct wf_pid_param dimms_param = { static const struct wf_pid_param dimms_param = {
.interval = 1, .interval = 1,
.history_len = 20, .history_len = 20,
.gd = 0, .gd = 0,
......
...@@ -145,7 +145,7 @@ static s32 smu_fan_max(struct wf_control *ct) ...@@ -145,7 +145,7 @@ static s32 smu_fan_max(struct wf_control *ct)
return fct->max; return fct->max;
} }
static struct wf_control_ops smu_fan_ops = { static const struct wf_control_ops smu_fan_ops = {
.set_value = smu_fan_set, .set_value = smu_fan_set,
.get_value = smu_fan_get, .get_value = smu_fan_get,
.get_min = smu_fan_min, .get_min = smu_fan_min,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment