Commit eb9fc0f3 authored by Bartosz Golaszewski's avatar Bartosz Golaszewski Committed by Bjorn Andersson
Browse files

soc: qcom: rmtfs: constify rmtfs_class



The rmtfs class object is never modified and can be made constant.

Reviewed-by: default avatarDmitry Baryshkov <dmitry.baryshkov@linaro.org>
Signed-off-by: default avatarBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Link: https://lore.kernel.org/r/20241202094903.18388-2-brgl@bgdev.pl


Signed-off-by: default avatarBjorn Andersson <andersson@kernel.org>
parent a9020afe
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -125,7 +125,7 @@ static int qcom_rmtfs_mem_release(struct inode *inode, struct file *filp)
	return 0;
}

static struct class rmtfs_class = {
static const struct class rmtfs_class = {
	.name           = "rmtfs",
};