diff options
author | Soren Brinkmann <soren.brinkmann@xilinx.com> | 2013-09-18 11:48:35 -0700 |
---|---|---|
committer | Daniel Lezcano <daniel.lezcano@linaro.org> | 2013-10-02 11:33:23 +0200 |
commit | 3713c0cfd06fa49729a12929a7ee8b7ad48f3c02 (patch) | |
tree | 218a9f12c1d077c18722a52abc92fb45d0ed093b /include/linux/clockchips.h | |
parent | 17deb9c2db01c7813611291d251d8c7dbdfd3c9d (diff) |
clockchips: Add FEAT_PERCPU clockevent flag
Add the flag CLOCK_EVT_FEAT_PERCPU which is supposed to be set for per
cpu clockevent devices.
Signed-off-by: Soren Brinkmann <soren.brinkmann@xilinx.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Acked-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'include/linux/clockchips.h')
-rw-r--r-- | include/linux/clockchips.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/clockchips.h b/include/linux/clockchips.h index 0857922e8ad0..493aa021c7a9 100644 --- a/include/linux/clockchips.h +++ b/include/linux/clockchips.h @@ -60,6 +60,7 @@ enum clock_event_mode { * Core shall set the interrupt affinity dynamically in broadcast mode */ #define CLOCK_EVT_FEAT_DYNIRQ 0x000020 +#define CLOCK_EVT_FEAT_PERCPU 0x000040 /** * struct clock_event_device - clock event device descriptor |