aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);