mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-19 02:34:01 +08:00
15 lines
247 B
C
15 lines
247 B
C
|
#ifndef __PERF_REGS_H
|
||
|
#define __PERF_REGS_H
|
||
|
|
||
|
#ifndef NO_PERF_REGS
|
||
|
#include <perf_regs.h>
|
||
|
#else
|
||
|
#define PERF_REGS_MASK 0
|
||
|
|
||
|
static inline const char *perf_reg_name(int id __used)
|
||
|
{
|
||
|
return NULL;
|
||
|
}
|
||
|
#endif /* NO_PERF_REGS */
|
||
|
#endif /* __PERF_REGS_H */
|