diff options
author | Michal Simek <michal.simek@xilinx.com> | 2017-12-19 08:15:25 -0500 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2018-01-08 07:42:39 -0500 |
commit | 5abcdc206fe8383f1e74d6cbce2f16ff0b121715 (patch) | |
tree | fce37f6f9489500223629f353685817c9605d893 | |
parent | 4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323 (diff) |
soc: xilinx: Create folder structure for soc specific drivers
Create directory structure with Makefile/Kconfig for adding xilinx soc
specific drivers.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
-rw-r--r-- | drivers/soc/Kconfig | 1 | ||||
-rw-r--r-- | drivers/soc/Makefile | 1 | ||||
-rw-r--r-- | drivers/soc/xilinx/Kconfig | 4 | ||||
-rw-r--r-- | drivers/soc/xilinx/Makefile | 1 |
4 files changed, 7 insertions, 0 deletions
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" | |||
16 | source "drivers/soc/ti/Kconfig" | 16 | source "drivers/soc/ti/Kconfig" |
17 | source "drivers/soc/ux500/Kconfig" | 17 | source "drivers/soc/ux500/Kconfig" |
18 | source "drivers/soc/versatile/Kconfig" | 18 | source "drivers/soc/versatile/Kconfig" |
19 | source "drivers/soc/xilinx/Kconfig" | ||
19 | source "drivers/soc/zte/Kconfig" | 20 | source "drivers/soc/zte/Kconfig" |
20 | 21 | ||
21 | endmenu | 22 | 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/ | |||
22 | obj-$(CONFIG_SOC_TI) += ti/ | 22 | obj-$(CONFIG_SOC_TI) += ti/ |
23 | obj-$(CONFIG_ARCH_U8500) += ux500/ | 23 | obj-$(CONFIG_ARCH_U8500) += ux500/ |
24 | obj-$(CONFIG_PLAT_VERSATILE) += versatile/ | 24 | obj-$(CONFIG_PLAT_VERSATILE) += versatile/ |
25 | obj-y += xilinx/ | ||
25 | obj-$(CONFIG_ARCH_ZX) += zte/ | 26 | 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 @@ | |||
1 | # SPDX-License-Identifier: GPL-2.0 | ||
2 | menu "Xilinx SoC drivers" | ||
3 | |||
4 | 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 | |||