Skip to content

Commit

Permalink
arm64: dts: rockchip: fix include reference
Browse files Browse the repository at this point in the history
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: d5d332d ("devicetree: Move include prefixes from arch to separate directory")
Signed-off-by: Arnd Bergmann <[email protected]>
  • Loading branch information
arndb committed May 19, 2017
1 parent 76cefef commit 6bf1c2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm64/boot/dts/rockchip/rk3399-gru-kevin.dts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6bf1c2d

Please sign in to comment.