diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2010-05-26 17:42:17 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-27 12:12:41 -0400 |
commit | 62154991a8b2b932112d39bf4aeaab37fa7b9a31 (patch) | |
tree | 3a66dee35354f8ffe071aa059024d9ae41d3cdaa /include/linux/i2c/pca953x.h | |
parent | a80a0bbee49872c296c9ed9d6af0f510fcd825a7 (diff) |
gpiolib: make names array and its values const
gpiolib doesn't need to modify the names and I assume most initializers
use string constants that shouldn't be modified anyhow.
[akpm@linux-foundation.org: fix drivers/gpio/cs5535-gpio.c]
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: Kevin Wells <kevin.wells@nxp.com>
Cc: David Brownell <david-b@pacbell.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/i2c/pca953x.h')
-rw-r--r-- | include/linux/i2c/pca953x.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/i2c/pca953x.h b/include/linux/i2c/pca953x.h index d5c5a60c8a0b..139ba52667c8 100644 --- a/include/linux/i2c/pca953x.h +++ b/include/linux/i2c/pca953x.h | |||
@@ -24,7 +24,7 @@ struct pca953x_platform_data { | |||
24 | int (*teardown)(struct i2c_client *client, | 24 | int (*teardown)(struct i2c_client *client, |
25 | unsigned gpio, unsigned ngpio, | 25 | unsigned gpio, unsigned ngpio, |
26 | void *context); | 26 | void *context); |
27 | char **names; | 27 | const char *const *names; |
28 | }; | 28 | }; |
29 | 29 | ||
30 | #endif /* _LINUX_PCA953X_H */ | 30 | #endif /* _LINUX_PCA953X_H */ |