mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
4490e3c688
Replace GPL license statements with SPDX license identifiers (GPL-1.0+, GPL-2.0 and GPL-2.0+). Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
26 lines
594 B
C
26 lines
594 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright 2011 Samsung Electronics Co., Ltd.
|
|
* http://www.samsung.com/
|
|
*
|
|
* Header file for samsung s3c and s5p time support
|
|
*/
|
|
|
|
#ifndef __ASM_PLAT_SAMSUNG_TIME_H
|
|
#define __ASM_PLAT_SAMSUNG_TIME_H __FILE__
|
|
|
|
/* SAMSUNG HR-Timer Clock mode */
|
|
enum samsung_timer_mode {
|
|
SAMSUNG_PWM0,
|
|
SAMSUNG_PWM1,
|
|
SAMSUNG_PWM2,
|
|
SAMSUNG_PWM3,
|
|
SAMSUNG_PWM4,
|
|
};
|
|
|
|
extern void __init samsung_set_timer_source(enum samsung_timer_mode event,
|
|
enum samsung_timer_mode source);
|
|
|
|
extern void __init samsung_timer_init(void);
|
|
|
|
#endif /* __ASM_PLAT_SAMSUNG_TIME_H */
|