From: Masahiro Yamada Date: Sun, 19 Feb 2023 14:23:27 +0000 (+0900) Subject: .gitattributes: use 'dts' diff driver for *.dtso files X-Git-Tag: v6.6.7~3399^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ae41e0e41ba04b4b51641b504fb3b405aef7ec04;p=platform%2Fkernel%2Flinux-starfive.git .gitattributes: use 'dts' diff driver for *.dtso files Now we have the third extension for DT source files (overlay). Give the diff=dts attribute to *.dtso as well. While I was here, I merged *.c and *.o into *.[ch] and added the SPDX-License-Identifier. Signed-off-by: Masahiro Yamada --- diff --git a/.gitattributes b/.gitattributes index 4b32eaa..c9ba5bf 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,4 +1,4 @@ -*.c diff=cpp -*.h diff=cpp -*.dtsi diff=dts -*.dts diff=dts +# SPDX-License-Identifier: GPL-2.0-only +*.[ch] diff=cpp +*.dts diff=dts +*.dts[io] diff=dts