sh: pfc: Dumb GPIO stringification.
authorPaul Mundt <lethal@linux-sh.org>
Tue, 10 Jul 2012 02:59:29 +0000 (11:59 +0900)
committerPaul Mundt <lethal@linux-sh.org>
Tue, 10 Jul 2012 02:59:29 +0000 (11:59 +0900)
This implements fairly simplistic stringification of existing pinmux
GPIOs for easy enum id -> string mapping, which will subsequently be used
by the pinctrl support code.

Signed-off-by: Paul Mundt <lethal@linux-sh.org>
include/linux/sh_pfc.h

index f522550fc32b51a114cfd0d1c38fe5cefad0aaab..8c4cbcb9064d793b8729b5cce6308b61e866e93e 100644 (file)
@@ -11,6 +11,7 @@
 #ifndef __SH_PFC_H
 #define __SH_PFC_H
 
+#include <linux/stringify.h>
 #include <asm-generic/gpio.h>
 
 typedef unsigned short pinmux_enum_t;
@@ -37,10 +38,11 @@ enum {
 struct pinmux_gpio {
        pinmux_enum_t enum_id;
        pinmux_flag_t flags;
+       const char *name;
 };
 
 #define PINMUX_GPIO(gpio, data_or_mark) \
-       [gpio] = { .enum_id = data_or_mark, .flags = PINMUX_TYPE_NONE }
+       [gpio] = { .name = __stringify(gpio), .enum_id = data_or_mark, .flags = PINMUX_TYPE_NONE }
 
 #define PINMUX_DATA(data_or_mark, ids...) data_or_mark, ids, 0