Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef XMON_BPTS_H
0003 #define XMON_BPTS_H
0004 
0005 #define NBPTS   256
0006 #ifndef __ASSEMBLY__
0007 #include <asm/inst.h>
0008 #define BPT_SIZE    (sizeof(ppc_inst_t) * 2)
0009 #define BPT_WORDS   (BPT_SIZE / sizeof(ppc_inst_t))
0010 
0011 extern unsigned int bpt_table[NBPTS * BPT_WORDS];
0012 #endif /* __ASSEMBLY__ */
0013 
0014 #endif /* XMON_BPTS_H */