diff options
author | Arnd Bergmann <arnd@arndb.de> | 2017-05-19 14:12:00 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2017-05-19 14:12:00 +0200 |
commit | 6bf1c2d26716dcd483699cc62474e49d164c5563 (patch) | |
tree | a95205538482a77dfcd2b0f8295e9d77880a7b98 /arch | |
parent | 76cefef8e838304a71725a0b5007c375619d78fb (diff) | |
download | linux-6bf1c2d26716dcd483699cc62474e49d164c5563.tar.bz2 |
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>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm64/boot/dts/rockchip/rk3399-gru-kevin.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/boot/dts/rockchip/rk3399-gru-kevin.dts b/arch/arm64/boot/dts/rockchip/rk3399-gru-kevin.dts index 658bb9dc9dfd..7bd31066399b 100644 --- a/arch/arm64/boot/dts/rockchip/rk3399-gru-kevin.dts +++ b/arch/arm64/boot/dts/rockchip/rk3399-gru-kevin.dts @@ -44,7 +44,7 @@ /dts-v1/; #include "rk3399-gru.dtsi" -#include <include/dt-bindings/input/linux-event-codes.h> +#include <dt-bindings/input/linux-event-codes.h> /* * Kevin-specific things |