浏览代码

platform/x86: intel_telemetry: Add needed inclusion

linux/io.h defines readq() and ioremap_nocache() / iounmap() functions.

If not included, the build fails:

intel_telemetry_pltdrv.c:1165:31: warning: assignment makes pointer from integer without a cast [-Wint-conversion]
intel_telemetry_pltdrv.c:1165:33: error: implicit declaration of function 'ioremap_nocache' [-Werror=implicit-function-declaration]
intel_telemetry_pltdrv.c:1202:3: error: implicit declaration of function 'iounmap' [-Werror=implicit-function-declaration]
intel_telemetry_pltdrv.c:900:20: error: implicit declaration of function 'readq' [-Werror=implicit-function-declaration]

Fix this by including linux/io.h.

Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Andy Shevchenko 7 年之前
父节点
当前提交
cfab22c012
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      drivers/platform/x86/intel_telemetry_pltdrv.c

+ 2 - 0
drivers/platform/x86/intel_telemetry_pltdrv.c

@@ -16,6 +16,8 @@
  * It used the PUNIT and PMC IPC interfaces for configuring the counters.
  * It used the PUNIT and PMC IPC interfaces for configuring the counters.
  * The accumulated results are fetched from SRAM.
  * The accumulated results are fetched from SRAM.
  */
  */
+
+#include <linux/io.h>
 #include <linux/module.h>
 #include <linux/module.h>
 #include <linux/platform_device.h>
 #include <linux/platform_device.h>