diff options
author | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2021-11-28 18:24:45 +0100 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2021-12-21 16:10:09 +0100 |
commit | 8ebbfb9882f8f0e52195d08f02a030e617381b3b (patch) | |
tree | 95ee2edb35d155861cc0b50966fa935325b6ee7d /drivers/iio | |
parent | iio:accel:bmc150: Mark structure __maybe_unused as only needed with for pm ops. (diff) | |
download | linux-8ebbfb9882f8f0e52195d08f02a030e617381b3b.tar.xz linux-8ebbfb9882f8f0e52195d08f02a030e617381b3b.zip |
iio:accel:kxcjk-1013: Mark struct __maybe_unused to avoid warning.
This structure is only used in PM ops, so may not be used depending
on build configuration.
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Cc: Stephan Gerhold <stephan@gerhold.net>
Reviewed-by: Nathan Chancellor <nathan@kernel.org>
Link: https://lore.kernel.org/r/20211128172445.2616166-13-jic23@kernel.org
Diffstat (limited to 'drivers/iio')
-rw-r--r-- | drivers/iio/accel/kxcjk-1013.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/accel/kxcjk-1013.c b/drivers/iio/accel/kxcjk-1013.c index 88cf0c276893..460b1a89d575 100644 --- a/drivers/iio/accel/kxcjk-1013.c +++ b/drivers/iio/accel/kxcjk-1013.c @@ -315,7 +315,7 @@ static const char *const kxtf9_samp_freq_avail = "25 50 100 200 400 800"; /* Refer to section 4 of the specification */ -static const struct { +static __maybe_unused const struct { int odr_bits; int usec; } odr_start_up_times[KX_MAX_CHIPS][12] = { |