Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.5 10 lines 330 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _INTEL_MID_VRTC_H 3#define _INTEL_MID_VRTC_H 4 5extern unsigned char vrtc_cmos_read(unsigned char reg); 6extern void vrtc_cmos_write(unsigned char val, unsigned char reg); 7extern void vrtc_get_time(struct timespec64 *now); 8extern int vrtc_set_mmss(const struct timespec64 *now); 9 10#endif