include/linux/mfd/mt6397/rtc.h

Source file repositories/reference/linux-study-clean/include/linux/mfd/mt6397/rtc.h

File Facts

System
Linux kernel
Corpus path
include/linux/mfd/mt6397/rtc.h
Extension
.h
Size
2281 bytes
Lines
82
Domain
Core OS
Bucket
Core Kernel Interface
Inferred role
Core OS: implementation source
Status
source implementation candidate

Why This File Exists

Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.

Dependency Surface

Detected Declarations

Annotated Snippet

struct mtk_rtc_data {
	u32                     wrtgr;
};

struct mt6397_rtc {
	struct rtc_device       *rtc_dev;

	/* Protect register access from multiple tasks */
	struct mutex            lock;
	struct regmap           *regmap;
	int                     irq;
	u32                     addr_base;
	const struct mtk_rtc_data *data;
};

#endif /* _LINUX_MFD_MT6397_RTC_H_ */

Annotation

Implementation Notes