浏览代码

arm64: dts: rockchip: fix include reference

The way we handle include paths for DT has changed a bit, which
broke a file that had an unconventional way to reference a common
header file:

arch/arm64/boot/dts/rockchip/rk3399-gru-kevin.dts:47:10: fatal error: include/dt-bindings/input/linux-event-codes.h: No such file or directory

This removes the leading "include/" from the path name, which fixes it.

Fixes: d5d332d3f7e8 ("devicetree: Move include prefixes from arch to separate directory")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann 8 年之前
父节点
当前提交
6bf1c2d267
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      arch/arm64/boot/dts/rockchip/rk3399-gru-kevin.dts

+ 1 - 1
arch/arm64/boot/dts/rockchip/rk3399-gru-kevin.dts

@@ -44,7 +44,7 @@
 
 
 /dts-v1/;
 /dts-v1/;
 #include "rk3399-gru.dtsi"
 #include "rk3399-gru.dtsi"
-#include <include/dt-bindings/input/linux-event-codes.h>
+#include <dt-bindings/input/linux-event-codes.h>
 
 
 /*
 /*
  * Kevin-specific things
  * Kevin-specific things