diff options
author | Arnd Bergmann <arnd@arndb.de> | 2018-03-07 10:52:19 -0500 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2018-03-07 10:52:19 -0500 |
commit | 49774d86fd485873e736470ea1cb03f84d39ce3f (patch) | |
tree | 7e9f731516dacd037ca0c2a7c0bb4422fb331f62 /drivers/memory | |
parent | a7e66ff96beb616067b3b2b9934f5974b2dd2758 (diff) | |
parent | 7353c54620732797dcc3b4b1fc6f3cc0c0d9b6ef (diff) |
Merge tag 'samsung-drivers-4.17' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/krzk/linux into next/drivers
Pull "Samsung soc drivers changes for v4.17" from Krzysztof Kozłowski:
1. Add SPDX license identifiers.
2. Populate children syscon nodes in PMU driver to properly model HW in
DeviceTree.
* tag 'samsung-drivers-4.17' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/krzk/linux:
soc: samsung: pmu: Populate children syscon nodes
soc: samsung: Add SPDX license identifiers to headers
memory: samsung: Add SPDX license identifiers
Diffstat (limited to 'drivers/memory')
-rw-r--r-- | drivers/memory/samsung/Kconfig | 1 | ||||
-rw-r--r-- | drivers/memory/samsung/Makefile | 1 | ||||
-rw-r--r-- | drivers/memory/samsung/exynos-srom.c | 18 | ||||
-rw-r--r-- | drivers/memory/samsung/exynos-srom.h | 7 |
4 files changed, 11 insertions, 16 deletions
diff --git a/drivers/memory/samsung/Kconfig b/drivers/memory/samsung/Kconfig index 9de12222061c..79ce7ea58903 100644 --- a/drivers/memory/samsung/Kconfig +++ b/drivers/memory/samsung/Kconfig | |||
@@ -1,3 +1,4 @@ | |||
1 | # SPDX-License-Identifier: GPL-2.0 | ||
1 | config SAMSUNG_MC | 2 | config SAMSUNG_MC |
2 | bool "Samsung Exynos Memory Controller support" if COMPILE_TEST | 3 | bool "Samsung Exynos Memory Controller support" if COMPILE_TEST |
3 | help | 4 | help |
diff --git a/drivers/memory/samsung/Makefile b/drivers/memory/samsung/Makefile index 9c554d5522ad..00587be66211 100644 --- a/drivers/memory/samsung/Makefile +++ b/drivers/memory/samsung/Makefile | |||
@@ -1 +1,2 @@ | |||
1 | # SPDX-License-Identifier: GPL-2.0 | ||
1 | obj-$(CONFIG_EXYNOS_SROM) += exynos-srom.o | 2 | obj-$(CONFIG_EXYNOS_SROM) += exynos-srom.o |
diff --git a/drivers/memory/samsung/exynos-srom.c b/drivers/memory/samsung/exynos-srom.c index bf827a666694..7edd7fb540f2 100644 --- a/drivers/memory/samsung/exynos-srom.c +++ b/drivers/memory/samsung/exynos-srom.c | |||
@@ -1,14 +1,10 @@ | |||
1 | /* | 1 | // SPDX-License-Identifier: GPL-2.0 |
2 | * Copyright (c) 2015 Samsung Electronics Co., Ltd. | 2 | // |
3 | * http://www.samsung.com/ | 3 | // Copyright (c) 2015 Samsung Electronics Co., Ltd. |
4 | * | 4 | // http://www.samsung.com/ |
5 | * EXYNOS - SROM Controller support | 5 | // |
6 | * Author: Pankaj Dubey <pankaj.dubey@samsung.com> | 6 | // EXYNOS - SROM Controller support |
7 | * | 7 | // Author: Pankaj Dubey <pankaj.dubey@samsung.com> |
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License version 2 as | ||
10 | * published by the Free Software Foundation. | ||
11 | */ | ||
12 | 8 | ||
13 | #include <linux/io.h> | 9 | #include <linux/io.h> |
14 | #include <linux/init.h> | 10 | #include <linux/init.h> |
diff --git a/drivers/memory/samsung/exynos-srom.h b/drivers/memory/samsung/exynos-srom.h index 34660c6a57a9..da612797f522 100644 --- a/drivers/memory/samsung/exynos-srom.h +++ b/drivers/memory/samsung/exynos-srom.h | |||
@@ -1,13 +1,10 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0 */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 2015 Samsung Electronics Co., Ltd. | 3 | * Copyright (c) 2015 Samsung Electronics Co., Ltd. |
3 | * http://www.samsung.com | 4 | * http://www.samsung.com |
4 | * | 5 | * |
5 | * Exynos SROMC register definitions | 6 | * Exynos SROMC register definitions |
6 | * | 7 | */ |
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | */ | ||
11 | 8 | ||
12 | #ifndef __EXYNOS_SROM_H | 9 | #ifndef __EXYNOS_SROM_H |
13 | #define __EXYNOS_SROM_H __FILE__ | 10 | #define __EXYNOS_SROM_H __FILE__ |