From: Jonathan Cameron Date: Mon, 18 Apr 2011 11:58:56 +0000 (+0100) Subject: staging:iio:light:tsl2563 constify gain level table. X-Git-Tag: v3.0-rc1~336^2~676 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=1ff7e1d84d95034b415c3e85e63b919a6d9129da;p=karo-tx-linux.git staging:iio:light:tsl2563 constify gain level table. Trivial cleanup. Signed-off-by: Jonathan Cameron Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/iio/light/tsl2563.c b/drivers/staging/iio/light/tsl2563.c index 8c00584c53db..19b7215a7c56 100644 --- a/drivers/staging/iio/light/tsl2563.c +++ b/drivers/staging/iio/light/tsl2563.c @@ -92,7 +92,7 @@ struct tsl2563_gainlevel_coeff { u16 max; }; -static struct tsl2563_gainlevel_coeff tsl2563_gainlevel_table[] = { +static const struct tsl2563_gainlevel_coeff tsl2563_gainlevel_table[] = { { .gaintime = TSL2563_TIMING_400MS | TSL2563_TIMING_GAIN16, .min = 0, @@ -122,7 +122,7 @@ struct tsl2563_chip { /* Remember state for suspend and resume functions */ pm_message_t state; - struct tsl2563_gainlevel_coeff *gainlevel; + struct tsl2563_gainlevel_coeff const *gainlevel; u16 low_thres; u16 high_thres;