summaryrefslogtreecommitdiff
path: root/include/task.h
diff options
context:
space:
mode:
authorRandall Spangler <rspangler@chromium.org>2012-01-17 14:25:20 -0800
committerRandall Spangler <rspangler@chromium.org>2012-01-17 15:21:20 -0800
commit37dcc1ab56c6817aae90e244f42ebff1d62bbfcb (patch)
tree02c6e80aa593dcfc9abd9d2dd202ac2c1727e982 /include/task.h
parent002bc4278bcfe26ae9c3b6fb5cdd3ddc2d07403e (diff)
downloadchrome-ec-37dcc1ab56c6817aae90e244f42ebff1d62bbfcb.tar.gz
Handle all GPIO IRQs. Interrupts no longer enabled by default.
Signed-off-by: Randall Spangler <rspangler@chromium.org> BUG=chrome-os-partner:7456 TEST=if it runs, it works Change-Id: Ib82afab7d53203af31eefc9887feb98679266ac1
Diffstat (limited to 'include/task.h')
-rw-r--r--include/task.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/task.h b/include/task.h
index 52e42d3740..7e1d001f11 100644
--- a/include/task.h
+++ b/include/task.h
@@ -92,9 +92,9 @@ struct irq_priority {
* ensures it is enabled in the interrupt controller with the right priority.
*
* Note that you MUST pass irq using a LM4_IRQ_* constant from register.h, not
- * as a number, because it's stringized and matched up with a weak reference
- * from init.S. (This is still better than passing it as a raw number, because
- * that's more typo-prone.)
+ * as a number, and not as some other #defined constant, because it's
+ * stringized and matched up with a weak reference from init.S. (This is still
+ * better than passing it as a raw number, because that's more typo-prone.)
*/
#define DECLARE_IRQ(irq, routine, priority) \
void irq_##irq##_handler(void) \