diff options
-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__ |