summaryrefslogtreecommitdiff
path: root/include/switch.h
diff options
context:
space:
mode:
authorRandall Spangler <rspangler@chromium.org>2013-07-12 14:07:25 -0700
committerChromeBot <chrome-bot@google.com>2013-07-17 10:49:48 -0700
commit672057cb7e242574079b05e3028c0e337aa450e5 (patch)
treed5d76796ca1ff024fe3aa4bdcffca5d5cc6d2ae8 /include/switch.h
parentd48828757de2274938cf8ec862689c935adaae33 (diff)
downloadchrome-ec-672057cb7e242574079b05e3028c0e337aa450e5.tar.gz
Split x86 power button logic out of switch.c
Power button logic is common across all platforms and is not LM4-specific, so move it to its own module. Switch.c will eventually be moving to common/ and will common across all platforms (not just x86), and splitting out the x86 power button logic is needed before that too. BUG=chrome-os-partner:18343 BRANCH=none TEST=manual 1) power on system with both lid and power button. 2) power+refresh -> reboots 3) power+refresh+esc -> recovery mode 4) power+refresh+downarrow -> reboots, AP stays off 5) toggling recovery GPIO via servo should generate SW debug output showing bit 0x10 toggling Change-Id: I07714e2c035dceece66f90407983397d2697e7d5 Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/61780
Diffstat (limited to 'include/switch.h')
-rw-r--r--include/switch.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/include/switch.h b/include/switch.h
index 2cd732774e..f59e56df52 100644
--- a/include/switch.h
+++ b/include/switch.h
@@ -11,7 +11,7 @@
#include "common.h"
#include "gpio.h"
-#ifdef HAS_TASK_SWITCH
+#ifdef CONFIG_SWITCH
/**
* Interrupt handler for switch inputs.
*
@@ -20,11 +20,6 @@
void switch_interrupt(enum gpio_signal signal);
#else
#define switch_interrupt NULL
-#endif /* HAS_TASK_SWITCH */
-
-/**
- * Return non-zero if write protect signal is asserted.
- */
-int switch_get_write_protect(void);
+#endif /* CONFIG_SWITCH */
#endif /* __CROS_EC_SWITCH_H */