From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752125AbcELWDD (ORCPT ); Thu, 12 May 2016 18:03:03 -0400 Received: from mail-pf0-f178.google.com ([209.85.192.178]:32986 "EHLO mail-pf0-f178.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751422AbcELWDA (ORCPT ); Thu, 12 May 2016 18:03:00 -0400 From: Douglas Anderson To: olof@lixom.net, Arnd Bergmann , Heiko Stuebner , robh@kernel.org Cc: Douglas Anderson , robh+dt@kernel.org, mark.rutland@arm.com, ijc+devicetree@hellion.org.uk, galak@codeaurora.org, catalin.marinas@arm.com, will.deacon@arm.com, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [PATCH] arm64: dts: Add symlinks for cros-ec-keyboard and cros-ec-sbs Date: Thu, 12 May 2016 15:02:10 -0700 Message-Id: <1463090530-21864-1-git-send-email-dianders@chromium.org> X-Mailer: git-send-email 2.8.0.rc3.226.g39d4020 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org We'd like to be able to use the cros-ec-keyboard.dtsi and cros-ec-sbs.dtsi snippets for arm64 devices. Currently those files live in the arm/boot/dts directory. Let's follow the convention set by commit 8ee57b8182c4 ("ARM64: dts: vexpress: Use a symlink to vexpress-v2m-rs1.dtsi from arch=arm") and use a symlink. Note that in this case we put the files in a new "include/common" directory since these snippets may need to be referenced by dts files in many different subdirectories. Signed-off-by: Douglas Anderson --- Note that, as of right now, there are no users of this. However, given development happening it is almost 100% certain that users will arrive soon. If we need to wait for the first user before landing this we can leave this on the back burner. If it's OK to have no users (yet), let's land. arch/arm64/boot/dts/include/common/cros-ec-keyboard.dtsi | 1 + arch/arm64/boot/dts/include/common/cros-ec-sbs.dtsi | 1 + 2 files changed, 2 insertions(+) create mode 120000 arch/arm64/boot/dts/include/common/cros-ec-keyboard.dtsi create mode 120000 arch/arm64/boot/dts/include/common/cros-ec-sbs.dtsi diff --git a/arch/arm64/boot/dts/include/common/cros-ec-keyboard.dtsi b/arch/arm64/boot/dts/include/common/cros-ec-keyboard.dtsi new file mode 120000 index 000000000000..1c1889f0a791 --- /dev/null +++ b/arch/arm64/boot/dts/include/common/cros-ec-keyboard.dtsi @@ -0,0 +1 @@ +../../../../../arm/boot/dts/cros-ec-keyboard.dtsi \ No newline at end of file diff --git a/arch/arm64/boot/dts/include/common/cros-ec-sbs.dtsi b/arch/arm64/boot/dts/include/common/cros-ec-sbs.dtsi new file mode 120000 index 000000000000..3d7ae9c88bcd --- /dev/null +++ b/arch/arm64/boot/dts/include/common/cros-ec-sbs.dtsi @@ -0,0 +1 @@ +../../../../../arm/boot/dts/cros-ec-sbs.dtsi \ No newline at end of file -- 2.8.0.rc3.226.g39d4020 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Douglas Anderson Subject: [PATCH] arm64: dts: Add symlinks for cros-ec-keyboard and cros-ec-sbs Date: Thu, 12 May 2016 15:02:10 -0700 Message-ID: <1463090530-21864-1-git-send-email-dianders@chromium.org> Return-path: Sender: devicetree-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: olof-nZhT3qVonbNeoWH0uzbU5w@public.gmane.org, Arnd Bergmann , Heiko Stuebner , robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org Cc: Douglas Anderson , robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org, mark.rutland-5wv7dgnIgG8@public.gmane.org, ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg@public.gmane.org, galak-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org, catalin.marinas-5wv7dgnIgG8@public.gmane.org, will.deacon-5wv7dgnIgG8@public.gmane.org, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org List-Id: devicetree@vger.kernel.org We'd like to be able to use the cros-ec-keyboard.dtsi and cros-ec-sbs.dtsi snippets for arm64 devices. Currently those files live in the arm/boot/dts directory. Let's follow the convention set by commit 8ee57b8182c4 ("ARM64: dts: vexpress: Use a symlink to vexpress-v2m-rs1.dtsi from arch=arm") and use a symlink. Note that in this case we put the files in a new "include/common" directory since these snippets may need to be referenced by dts files in many different subdirectories. Signed-off-by: Douglas Anderson --- Note that, as of right now, there are no users of this. However, given development happening it is almost 100% certain that users will arrive soon. If we need to wait for the first user before landing this we can leave this on the back burner. If it's OK to have no users (yet), let's land. arch/arm64/boot/dts/include/common/cros-ec-keyboard.dtsi | 1 + arch/arm64/boot/dts/include/common/cros-ec-sbs.dtsi | 1 + 2 files changed, 2 insertions(+) create mode 120000 arch/arm64/boot/dts/include/common/cros-ec-keyboard.dtsi create mode 120000 arch/arm64/boot/dts/include/common/cros-ec-sbs.dtsi diff --git a/arch/arm64/boot/dts/include/common/cros-ec-keyboard.dtsi b/arch/arm64/boot/dts/include/common/cros-ec-keyboard.dtsi new file mode 120000 index 000000000000..1c1889f0a791 --- /dev/null +++ b/arch/arm64/boot/dts/include/common/cros-ec-keyboard.dtsi @@ -0,0 +1 @@ +../../../../../arm/boot/dts/cros-ec-keyboard.dtsi \ No newline at end of file diff --git a/arch/arm64/boot/dts/include/common/cros-ec-sbs.dtsi b/arch/arm64/boot/dts/include/common/cros-ec-sbs.dtsi new file mode 120000 index 000000000000..3d7ae9c88bcd --- /dev/null +++ b/arch/arm64/boot/dts/include/common/cros-ec-sbs.dtsi @@ -0,0 +1 @@ +../../../../../arm/boot/dts/cros-ec-sbs.dtsi \ No newline at end of file -- 2.8.0.rc3.226.g39d4020 -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html From mboxrd@z Thu Jan 1 00:00:00 1970 From: dianders@chromium.org (Douglas Anderson) Date: Thu, 12 May 2016 15:02:10 -0700 Subject: [PATCH] arm64: dts: Add symlinks for cros-ec-keyboard and cros-ec-sbs Message-ID: <1463090530-21864-1-git-send-email-dianders@chromium.org> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org We'd like to be able to use the cros-ec-keyboard.dtsi and cros-ec-sbs.dtsi snippets for arm64 devices. Currently those files live in the arm/boot/dts directory. Let's follow the convention set by commit 8ee57b8182c4 ("ARM64: dts: vexpress: Use a symlink to vexpress-v2m-rs1.dtsi from arch=arm") and use a symlink. Note that in this case we put the files in a new "include/common" directory since these snippets may need to be referenced by dts files in many different subdirectories. Signed-off-by: Douglas Anderson --- Note that, as of right now, there are no users of this. However, given development happening it is almost 100% certain that users will arrive soon. If we need to wait for the first user before landing this we can leave this on the back burner. If it's OK to have no users (yet), let's land. arch/arm64/boot/dts/include/common/cros-ec-keyboard.dtsi | 1 + arch/arm64/boot/dts/include/common/cros-ec-sbs.dtsi | 1 + 2 files changed, 2 insertions(+) create mode 120000 arch/arm64/boot/dts/include/common/cros-ec-keyboard.dtsi create mode 120000 arch/arm64/boot/dts/include/common/cros-ec-sbs.dtsi diff --git a/arch/arm64/boot/dts/include/common/cros-ec-keyboard.dtsi b/arch/arm64/boot/dts/include/common/cros-ec-keyboard.dtsi new file mode 120000 index 000000000000..1c1889f0a791 --- /dev/null +++ b/arch/arm64/boot/dts/include/common/cros-ec-keyboard.dtsi @@ -0,0 +1 @@ +../../../../../arm/boot/dts/cros-ec-keyboard.dtsi \ No newline at end of file diff --git a/arch/arm64/boot/dts/include/common/cros-ec-sbs.dtsi b/arch/arm64/boot/dts/include/common/cros-ec-sbs.dtsi new file mode 120000 index 000000000000..3d7ae9c88bcd --- /dev/null +++ b/arch/arm64/boot/dts/include/common/cros-ec-sbs.dtsi @@ -0,0 +1 @@ +../../../../../arm/boot/dts/cros-ec-sbs.dtsi \ No newline at end of file -- 2.8.0.rc3.226.g39d4020