Skip to content

Commit 5405c92

Browse files
masahir0ympe
authored andcommitted
powerpc/dts: Use #include "..." to include local DT
Most of DT files in PowerPC use #include "..." to make pre-processor include DT in the same directory, but we have 3 exceptional files that use #include <...> for that. Fix them to remove -I$(srctree)/arch/$(SRCARCH)/boot/dts path from dtc_cpp_flags. Signed-off-by: Masahiro Yamada <[email protected]> Signed-off-by: Michael Ellerman <[email protected]>
1 parent bfaa783 commit 5405c92

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

arch/powerpc/boot/dts/ac14xx.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*/
1111

1212

13-
#include <mpc5121.dtsi>
13+
#include "mpc5121.dtsi"
1414

1515
/ {
1616
model = "ac14xx";

arch/powerpc/boot/dts/mpc5121ads.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* option) any later version.
1010
*/
1111

12-
#include <mpc5121.dtsi>
12+
#include "mpc5121.dtsi"
1313

1414
/ {
1515
model = "mpc5121ads";

arch/powerpc/boot/dts/pdm360ng.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* option) any later version.
1414
*/
1515

16-
#include <mpc5121.dtsi>
16+
#include "mpc5121.dtsi"
1717

1818
/ {
1919
model = "pdm360ng";

0 commit comments

Comments
 (0)