mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-02 00:24:12 +08:00
c6ff132d42
A lot of header files are only used internally now, so they can be moved to mach-s3c, out of the visibility of drivers. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Link: https://lore.kernel.org/r/20200806182059.2431-40-krzk@kernel.org [krzk: Rebase and fixup leds-s3c24xx driver] Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
20 lines
490 B
C
20 lines
490 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright 2013 Tomasz Figa <tomasz.figa@gmail.com>
|
|
*
|
|
* Samsung PWM controller platform data helpers.
|
|
*/
|
|
|
|
#ifndef __ASM_ARCH_PWM_CORE_H
|
|
#define __ASM_ARCH_PWM_CORE_H __FILE__
|
|
|
|
#include <clocksource/samsung_pwm.h>
|
|
|
|
#ifdef CONFIG_SAMSUNG_DEV_PWM
|
|
extern void samsung_pwm_set_platdata(struct samsung_pwm_variant *pd);
|
|
#else
|
|
static inline void samsung_pwm_set_platdata(struct samsung_pwm_variant *pd) { }
|
|
#endif
|
|
|
|
#endif /* __ASM_ARCH_PWM_CORE_H */
|