diff options
author | Bjoern B. Brandenburg <bbb@cs.unc.edu> | 2010-05-30 18:41:28 -0400 |
---|---|---|
committer | Bjoern B. Brandenburg <bbb@cs.unc.edu> | 2010-05-30 20:43:19 -0400 |
commit | 152968b15afb74a6adba6d512c5eebf0280c8f00 (patch) | |
tree | f9827c770c61cfdfa59723f0b129c73dd2011877 /litmus | |
parent | a7205820bae197a89fc746f9f3c07e389d7068ba (diff) |
Make __ARCH_HAS_FEATHER_TRACE a proper CONFIG_ variable.
The idea of the Feather-Trace default implementation is that LITMUS^RT should
work without a specialized Feather-Trace implementation present. This was
actually broken.
Changes litmus/feather_trace.h to only include asm/feather_trace.h if actually
promised by the architecture.
Diffstat (limited to 'litmus')
-rw-r--r-- | litmus/ft_event.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/litmus/ft_event.c b/litmus/ft_event.c index 6084b6d6b364..58124fe0ad90 100644 --- a/litmus/ft_event.c +++ b/litmus/ft_event.c | |||
@@ -2,7 +2,7 @@ | |||
2 | 2 | ||
3 | #include <litmus/feather_trace.h> | 3 | #include <litmus/feather_trace.h> |
4 | 4 | ||
5 | #ifndef __ARCH_HAS_FEATHER_TRACE | 5 | #ifndef CONFIG_ARCH_HAS_FEATHER_TRACE |
6 | /* provide dummy implementation */ | 6 | /* provide dummy implementation */ |
7 | 7 | ||
8 | int ft_events[MAX_EVENTS]; | 8 | int ft_events[MAX_EVENTS]; |