Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S967311AbdLSNYI (ORCPT ); Tue, 19 Dec 2017 08:24:08 -0500 Received: from mail-wr0-f193.google.com ([209.85.128.193]:39396 "EHLO mail-wr0-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965422AbdLSNYD (ORCPT ); Tue, 19 Dec 2017 08:24:03 -0500 X-Google-Smtp-Source: ACJfBovrSqcEAX1dWVfalbsnR1nbK4DChqjXfoaNNIFYex9/pJJS2eZKnDO0MSQjRuYLgLVqT1hU2Q== From: Michal Simek To: linux-arm-kernel@lists.infradead.org, Arnd Bergmann Cc: linux-kernel@vger.kernel.org, monstr@monstr.eu, dhaval.shah@xilinx.com, Baoyou Xie , Jean Delvare , Thomas Gleixner , Nicolas Ferre , Geert Uytterhoeven , Lucas Stach , Kevin Hilman , Philippe Ombredanne , Alexandre Belloni , Shawn Guo , Kate Stewart , Greg Kroah-Hartman , Andrey Smirnov , Hauke Mehrtens , =?UTF-8?q?Andreas=20F=C3=A4rber?= , Ralf Baechle , Neil Armstrong Subject: [PATCH] soc: xilinx: Create folder structure for soc specific drivers Date: Tue, 19 Dec 2017 14:23:57 +0100 Message-Id: X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1765 Lines: 59 Create directory structure with Makefile/Kconfig for adding xilinx soc specific drivers. Signed-off-by: Michal Simek --- This patch is done based on discussion ended here https://lkml.org/lkml/2017/12/18/565 --- drivers/soc/Kconfig | 1 + drivers/soc/Makefile | 1 + drivers/soc/xilinx/Kconfig | 4 ++++ drivers/soc/xilinx/Makefile | 1 + 4 files changed, 7 insertions(+) create mode 100644 drivers/soc/xilinx/Kconfig create mode 100644 drivers/soc/xilinx/Makefile diff --git a/drivers/soc/Kconfig b/drivers/soc/Kconfig index fc9e98047421..c07b4a85253f 100644 --- a/drivers/soc/Kconfig +++ b/drivers/soc/Kconfig @@ -16,6 +16,7 @@ source "drivers/soc/tegra/Kconfig" source "drivers/soc/ti/Kconfig" source "drivers/soc/ux500/Kconfig" source "drivers/soc/versatile/Kconfig" +source "drivers/soc/xilinx/Kconfig" source "drivers/soc/zte/Kconfig" endmenu diff --git a/drivers/soc/Makefile b/drivers/soc/Makefile index deecb16e7256..61c584d9d619 100644 --- a/drivers/soc/Makefile +++ b/drivers/soc/Makefile @@ -22,4 +22,5 @@ obj-$(CONFIG_ARCH_TEGRA) += tegra/ obj-$(CONFIG_SOC_TI) += ti/ obj-$(CONFIG_ARCH_U8500) += ux500/ obj-$(CONFIG_PLAT_VERSATILE) += versatile/ +obj-y += xilinx/ obj-$(CONFIG_ARCH_ZX) += zte/ diff --git a/drivers/soc/xilinx/Kconfig b/drivers/soc/xilinx/Kconfig new file mode 100644 index 000000000000..ffaaa2f42c7e --- /dev/null +++ b/drivers/soc/xilinx/Kconfig @@ -0,0 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0 +menu "Xilinx SoC drivers" + +endmenu diff --git a/drivers/soc/xilinx/Makefile b/drivers/soc/xilinx/Makefile new file mode 100644 index 000000000000..f66554cd5c45 --- /dev/null +++ b/drivers/soc/xilinx/Makefile @@ -0,0 +1 @@ +# SPDX-License-Identifier: GPL-2.0 -- 1.9.1