summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/drivers/power.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/firmware/drivers/power.c b/firmware/drivers/power.c
index 621f53e11e..db3b9464f0 100644
--- a/firmware/drivers/power.c
+++ b/firmware/drivers/power.c
@@ -126,6 +126,9 @@ void power_off(void)
126 and_b(~0x20, &PBDRL); 126 and_b(~0x20, &PBDRL);
127 or_b(0x20, &PBIORL); 127 or_b(0x20, &PBIORL);
128#else 128#else
129 /* Disable the backlight */
130 and_b(~0x40, &PAIORH);
131
129 and_b(~0x08, &PADRH); 132 and_b(~0x08, &PADRH);
130 or_b(0x08, &PAIORH); 133 or_b(0x08, &PAIORH);
131#endif 134#endif