Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 07961ac7c0ee8b546658717034fe692fd12eefa9 authored by Linus Torvalds on 31 March 2013, 22:12:43 UTC
Linux 3.9-rc5
Tip revision: 07961ac
perf_regs.h
#ifndef __PERF_REGS_H
#define __PERF_REGS_H

#ifdef HAVE_PERF_REGS
#include <perf_regs.h>
#else
#define PERF_REGS_MASK	0

static inline const char *perf_reg_name(int id __maybe_unused)
{
	return NULL;
}
#endif /* HAVE_PERF_REGS */
#endif /* __PERF_REGS_H */
back to top