diff options
-rw-r--r-- | include/linux/sh_pfc.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/sh_pfc.h b/include/linux/sh_pfc.h index f522550fc32b..8c4cbcb9064d 100644 --- a/include/linux/sh_pfc.h +++ b/include/linux/sh_pfc.h | |||
@@ -11,6 +11,7 @@ | |||
11 | #ifndef __SH_PFC_H | 11 | #ifndef __SH_PFC_H |
12 | #define __SH_PFC_H | 12 | #define __SH_PFC_H |
13 | 13 | ||
14 | #include <linux/stringify.h> | ||
14 | #include <asm-generic/gpio.h> | 15 | #include <asm-generic/gpio.h> |
15 | 16 | ||
16 | typedef unsigned short pinmux_enum_t; | 17 | typedef unsigned short pinmux_enum_t; |
@@ -37,10 +38,11 @@ enum { | |||
37 | struct pinmux_gpio { | 38 | struct pinmux_gpio { |
38 | pinmux_enum_t enum_id; | 39 | pinmux_enum_t enum_id; |
39 | pinmux_flag_t flags; | 40 | pinmux_flag_t flags; |
41 | const char *name; | ||
40 | }; | 42 | }; |
41 | 43 | ||
42 | #define PINMUX_GPIO(gpio, data_or_mark) \ | 44 | #define PINMUX_GPIO(gpio, data_or_mark) \ |
43 | [gpio] = { .enum_id = data_or_mark, .flags = PINMUX_TYPE_NONE } | 45 | [gpio] = { .name = __stringify(gpio), .enum_id = data_or_mark, .flags = PINMUX_TYPE_NONE } |
44 | 46 | ||
45 | #define PINMUX_DATA(data_or_mark, ids...) data_or_mark, ids, 0 | 47 | #define PINMUX_DATA(data_or_mark, ids...) data_or_mark, ids, 0 |
46 | 48 | ||