]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/sh/include/cpu-sh2a/cpu/ubc.h
Merge remote-tracking branch 'net-next/master'
[karo-tx-linux.git] / arch / sh / include / cpu-sh2a / cpu / ubc.h
1 #ifndef __ARCH_SH_CPU_UBC_H__
2 #define __ARCH_SH_CPU_UBC_H__
3
4 enum {
5         SH_BREAKPOINT_READ      = (1 << 2),
6         SH_BREAKPOINT_WRITE     = (1 << 3),
7         SH_BREAKPOINT_RW        = SH_BREAKPOINT_READ | SH_BREAKPOINT_WRITE,
8
9         SH_BREAKPOINT_LEN_1     = (1 << 0),
10         SH_BREAKPOINT_LEN_2     = (1 << 1),
11         SH_BREAKPOINT_LEN_4     = SH_BREAKPOINT_LEN_1 | SH_BREAKPOINT_LEN_2,
12 };
13
14 #endif /* __ARCH_SH_CPU_UBC_H__ */