exynos-chipid.c (4f2c0a4acffbec01079c28f839422e64ddeff004) | exynos-chipid.c (4c4458375c5633954eda8fb9e7d31d56836b2bbd) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (c) 2019 Samsung Electronics Co., Ltd. 4 * http://www.samsung.com/ 5 * Copyright (c) 2020 Krzysztof Kozlowski <krzk@kernel.org> 6 * 7 * Exynos - CHIP ID support 8 * Author: Pankaj Dubey <pankaj.dubey@samsung.com> 9 * Author: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> 10 * Author: Krzysztof Kozlowski <krzk@kernel.org> 11 * 12 * Samsung Exynos SoC Adaptive Supply Voltage and Chip ID support 13 */ 14 15#include <linux/device.h> 16#include <linux/errno.h> 17#include <linux/mfd/syscon.h> 18#include <linux/module.h> 19#include <linux/of.h> | 1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (c) 2019 Samsung Electronics Co., Ltd. 4 * http://www.samsung.com/ 5 * Copyright (c) 2020 Krzysztof Kozlowski <krzk@kernel.org> 6 * 7 * Exynos - CHIP ID support 8 * Author: Pankaj Dubey <pankaj.dubey@samsung.com> 9 * Author: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> 10 * Author: Krzysztof Kozlowski <krzk@kernel.org> 11 * 12 * Samsung Exynos SoC Adaptive Supply Voltage and Chip ID support 13 */ 14 15#include <linux/device.h> 16#include <linux/errno.h> 17#include <linux/mfd/syscon.h> 18#include <linux/module.h> 19#include <linux/of.h> |
20#include <linux/of_device.h> | |
21#include <linux/platform_device.h> 22#include <linux/regmap.h> 23#include <linux/slab.h> 24#include <linux/soc/samsung/exynos-chipid.h> 25#include <linux/sys_soc.h> 26 27#include "exynos-asv.h" 28 --- 182 unchanged lines hidden --- | 20#include <linux/platform_device.h> 21#include <linux/regmap.h> 22#include <linux/slab.h> 23#include <linux/soc/samsung/exynos-chipid.h> 24#include <linux/sys_soc.h> 25 26#include "exynos-asv.h" 27 --- 182 unchanged lines hidden --- |