diff options
Diffstat (limited to 'arch/blackfin')
-rw-r--r-- | arch/blackfin/include/asm/kgdb.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/blackfin/include/asm/kgdb.h b/arch/blackfin/include/asm/kgdb.h index 8651afe12990..3ac0c72e9fee 100644 --- a/arch/blackfin/include/asm/kgdb.h +++ b/arch/blackfin/include/asm/kgdb.h | |||
@@ -103,7 +103,11 @@ static inline void arch_kgdb_breakpoint(void) | |||
103 | asm("EXCPT 2;"); | 103 | asm("EXCPT 2;"); |
104 | } | 104 | } |
105 | #define BREAK_INSTR_SIZE 2 | 105 | #define BREAK_INSTR_SIZE 2 |
106 | #define CACHE_FLUSH_IS_SAFE 1 | 106 | #ifdef CONFIG_SMP |
107 | # define CACHE_FLUSH_IS_SAFE 0 | ||
108 | #else | ||
109 | # define CACHE_FLUSH_IS_SAFE 1 | ||
110 | #endif | ||
107 | #define HW_INST_WATCHPOINT_NUM 6 | 111 | #define HW_INST_WATCHPOINT_NUM 6 |
108 | #define HW_WATCHPOINT_NUM 8 | 112 | #define HW_WATCHPOINT_NUM 8 |
109 | #define TYPE_INST_WATCHPOINT 0 | 113 | #define TYPE_INST_WATCHPOINT 0 |