diff options
author | Andrew Morton <[email protected]> | 2010-06-29 14:09:43 -0700 |
---|---|---|
committer | Florian Tobias Schandinat <[email protected]> | 2010-08-05 22:36:27 +0000 |
commit | f27098379b1dbfedae99e5b86e10529f799d4071 (patch) | |
tree | 1bda7e94afa1d741d13e78425d923d8b8b9283b3 | |
parent | 901b97d7b7ca9512ebb5d358df4ba6f8031f32cd (diff) |
drivers/video/via/via-gpio.c: fix warning
drivers/video/via/via-gpio.c: In function 'viafb_gpio_probe':
drivers/video/via/via-gpio.c:216: warning: assignment from incompatible pointer type
Cc: Joseph Chan <[email protected]>
Cc: Scott Fang <[email protected]>
Cc: Jonathan Corbet <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Florian Tobias Schandinat <[email protected]>
-rw-r--r-- | drivers/video/via/via-gpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/via/via-gpio.c b/drivers/video/via/via-gpio.c index 595516aea691..39acb37e7a1d 100644 --- a/drivers/video/via/via-gpio.c +++ b/drivers/video/via/via-gpio.c @@ -73,7 +73,7 @@ struct viafb_gpio_cfg { struct gpio_chip gpio_chip; struct viafb_dev *vdev; struct viafb_gpio *active_gpios[VIAFB_NUM_GPIOS]; - char *gpio_names[VIAFB_NUM_GPIOS]; + const char *gpio_names[VIAFB_NUM_GPIOS]; }; /* |