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.13 19 lines 433 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef SUN3X_TIME_H 3#define SUN3X_TIME_H 4 5extern int sun3x_hwclk(int set, struct rtc_time *t); 6void sun3x_sched_init(void); 7 8struct mostek_dt { 9 volatile unsigned char csr; 10 volatile unsigned char sec; 11 volatile unsigned char min; 12 volatile unsigned char hour; 13 volatile unsigned char wday; 14 volatile unsigned char mday; 15 volatile unsigned char month; 16 volatile unsigned char year; 17}; 18 19#endif