aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Lezcano <daniel.lezcano@linaro.org>2011-08-25 15:46:13 +0200
committerDaniel Lezcano <daniel.lezcano@linaro.org>2011-08-25 15:46:13 +0200
commit269de4f0bbe07a6607eac062129fc0fd68c5a32e (patch)
tree85e0210dbb4a849e6ed55a1cc711877030549a29
parent25fc4a3e710aec3632a6f34a073427fe90b365a9 (diff)
downloadpowerdebug-269de4f0bbe07a6607eac062129fc0fd68c5a32e.tar.gz
add GPIO definition
Add the enum definition we can rely on for the next patches. Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
-rw-r--r--display.c1
-rw-r--r--display.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/display.c b/display.c
index ebc4de6..f06387c 100644
--- a/display.c
+++ b/display.c
@@ -63,6 +63,7 @@ struct windata windata[] = {
[CLOCK] = { .name = "Clocks" },
[REGULATOR] = { .name = "Regulators" },
[SENSOR] = { .name = "Sensors" },
+ [GPIO] = { .name = "Gpio" },
};
static void display_fini(void)
diff --git a/display.h b/display.h
index 9e4e21a..035b2e9 100644
--- a/display.h
+++ b/display.h
@@ -13,7 +13,7 @@
* - initial API and implementation
*******************************************************************************/
-enum { CLOCK, REGULATOR, SENSOR };
+enum { CLOCK, REGULATOR, SENSOR, GPIO };
struct display_ops {
int (*display)(bool refresh);