mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
de0a732915
We rename the S5P specific "CONFIG_PWM" to CONFIG_PWM_S5P and move it to Kconfig. Given the usage of CONFIG_PWM_NX, we have that select this new symbol. Cc: Jaehoon Chung <jh80.chung@samsung.com> Cc: Minkyu Kang <mk7.kang@samsung.com> Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
23 lines
506 B
C
23 lines
506 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2013 Samsung Electronics
|
|
*
|
|
* Common configuration settings for the SAMSUNG EXYNOS boards.
|
|
*/
|
|
|
|
#ifndef __EXYNOS_COMMON_H
|
|
#define __EXYNOS_COMMON_H
|
|
|
|
#include <asm/arch/cpu.h> /* get chip and board defs */
|
|
#include <linux/sizes.h>
|
|
#include <linux/stringify.h>
|
|
|
|
/* Keep L2 Cache Disabled */
|
|
|
|
/* input clock of PLL: 24MHz input clock */
|
|
|
|
/* select serial console configuration */
|
|
|
|
/* Miscellaneous configurable options */
|
|
|
|
#endif /* __CONFIG_H */
|