Linux Audio

Check our new training course

Loading...
v6.2
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef _ASM_RTC_H
 3#define _ASM_RTC_H
 4
 5void time_init(void);
 6
 7#define RTC_CAP_4_DIGIT_YEAR	(1 << 0)
 8
 9struct sh_rtc_platform_info {
10	unsigned long capabilities;
11};
12
13#include <cpu/rtc.h>
14
15#endif /* _ASM_RTC_H */
v6.8
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef _ASM_RTC_H
 3#define _ASM_RTC_H
 4
 
 
 5#define RTC_CAP_4_DIGIT_YEAR	(1 << 0)
 6
 7struct sh_rtc_platform_info {
 8	unsigned long capabilities;
 9};
10
11#include <cpu/rtc.h>
12
13#endif /* _ASM_RTC_H */