diff --git a/drivers/thermal/qcom/tsens-8916.c b/drivers/thermal/qcom/tsens-8916.c index beb3afaa3f8f..fdf561b8b81d 100644 --- a/drivers/thermal/qcom/tsens-8916.c +++ b/drivers/thermal/qcom/tsens-8916.c @@ -100,7 +100,7 @@ static int calibrate_8916(struct tsens_device *tmdev) return 0; } -const struct tsens_ops ops_8916 = { +static const struct tsens_ops ops_8916 = { .init = init_common, .calibrate = calibrate_8916, .get_temp = get_temp_common, diff --git a/drivers/thermal/qcom/tsens-8960.c b/drivers/thermal/qcom/tsens-8960.c index 1d60916395c3..0451277d3a8f 100644 --- a/drivers/thermal/qcom/tsens-8960.c +++ b/drivers/thermal/qcom/tsens-8960.c @@ -276,7 +276,7 @@ static int get_temp_8960(struct tsens_device *tmdev, int id, int *temp) return -ETIMEDOUT; } -const struct tsens_ops ops_8960 = { +static const struct tsens_ops ops_8960 = { .init = init_8960, .calibrate = calibrate_8960, .get_temp = get_temp_8960, diff --git a/drivers/thermal/qcom/tsens-8974.c b/drivers/thermal/qcom/tsens-8974.c index da3ca4c18999..9baf77e8cbe3 100644 --- a/drivers/thermal/qcom/tsens-8974.c +++ b/drivers/thermal/qcom/tsens-8974.c @@ -232,7 +232,7 @@ static int calibrate_8974(struct tsens_device *tmdev) return 0; } -const struct tsens_ops ops_8974 = { +static const struct tsens_ops ops_8974 = { .init = init_common, .calibrate = calibrate_8974, .get_temp = get_temp_common, diff --git a/drivers/thermal/qcom/tsens-8996.c b/drivers/thermal/qcom/tsens-8996.c index e2e12745ad21..e1f77818d8fa 100644 --- a/drivers/thermal/qcom/tsens-8996.c +++ b/drivers/thermal/qcom/tsens-8996.c @@ -73,7 +73,7 @@ static int get_temp_8996(struct tsens_device *tmdev, int id, int *temp) return 0; } -const struct tsens_ops ops_8996 = { +static const struct tsens_ops ops_8996 = { .init = init_common, .get_temp = get_temp_8996, };