33 lines
777 B
Diff
33 lines
777 B
Diff
--- tools/include/uapi/linux/perf_event.h.orig
|
|
+++ tools/include/uapi/linux/perf_event.h
|
|
@@ -14,6 +14,7 @@
|
|
#ifndef _UAPI_LINUX_PERF_EVENT_H
|
|
#define _UAPI_LINUX_PERF_EVENT_H
|
|
|
|
+#include <linux/compiler.h>
|
|
#include <linux/types.h>
|
|
#include <linux/ioctl.h>
|
|
#include <asm/byteorder.h>
|
|
--- tools/power/x86/turbostat/turbostat.c.orig
|
|
+++ tools/power/x86/turbostat/turbostat.c
|
|
@@ -43,6 +43,7 @@
|
|
#include <cpuid.h>
|
|
#include <linux/capability.h>
|
|
#include <errno.h>
|
|
+#include <limits.h>
|
|
|
|
char *proc_stat = "/proc/stat";
|
|
FILE *outf;
|
|
--- tools/thermal/tmon/tmon.h.orig
|
|
+++ tools/thermal/tmon/tmon.h
|
|
@@ -19,6 +19,9 @@
|
|
#ifndef TMON_H
|
|
#define TMON_H
|
|
|
|
+#include <pthread.h>
|
|
+#include <sys/time.h>
|
|
+
|
|
#define MAX_DISP_TEMP 125
|
|
#define MAX_CTRL_TEMP 105
|
|
#define MIN_CTRL_TEMP 40
|