iio: adc: meson-saradc: mark all meson_sar_adc_data static and const
These are only passed as of_device_id.data and never modified. Thus we can mark them as static const, just like the of_device_id instances where they are used. Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
This commit is contained in:
parent
a78587d338
commit
c1c2de37c7
|
@ -834,17 +834,17 @@ static const struct iio_info meson_sar_adc_iio_info = {
|
|||
.driver_module = THIS_MODULE,
|
||||
};
|
||||
|
||||
struct meson_sar_adc_data meson_sar_adc_gxbb_data = {
|
||||
static const struct meson_sar_adc_data meson_sar_adc_gxbb_data = {
|
||||
.resolution = 10,
|
||||
.name = "meson-gxbb-saradc",
|
||||
};
|
||||
|
||||
struct meson_sar_adc_data meson_sar_adc_gxl_data = {
|
||||
static const struct meson_sar_adc_data meson_sar_adc_gxl_data = {
|
||||
.resolution = 12,
|
||||
.name = "meson-gxl-saradc",
|
||||
};
|
||||
|
||||
struct meson_sar_adc_data meson_sar_adc_gxm_data = {
|
||||
static const struct meson_sar_adc_data meson_sar_adc_gxm_data = {
|
||||
.resolution = 12,
|
||||
.name = "meson-gxm-saradc",
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue