mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
gpio: correctly use const char * const
On my previous patch I was overly hasty and made the suffixes string array const char const *suffixes, instaed of const char * const suffixes. This patch corrects that Signed-off-by: Olliver Schinagl <oliver@schinagl.nl> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
16858cc5d9
commit
ef3b2bd6f3
1 changed files with 1 additions and 1 deletions
|
@ -1657,7 +1657,7 @@ static struct gpio_desc *of_find_gpio(struct device *dev, const char *con_id,
|
||||||
unsigned int idx,
|
unsigned int idx,
|
||||||
enum gpio_lookup_flags *flags)
|
enum gpio_lookup_flags *flags)
|
||||||
{
|
{
|
||||||
static const char const *suffixes[] = { "gpios", "gpio" };
|
static const char * const suffixes[] = { "gpios", "gpio" };
|
||||||
char prop_name[32]; /* 32 is max size of property name */
|
char prop_name[32]; /* 32 is max size of property name */
|
||||||
enum of_gpio_flags of_flags;
|
enum of_gpio_flags of_flags;
|
||||||
struct gpio_desc *desc;
|
struct gpio_desc *desc;
|
||||||
|
|
Loading…
Add table
Reference in a new issue