include/linux/reset/reset-simple.h

Source file repositories/reference/linux-study-clean/include/linux/reset/reset-simple.h

File Facts

System
Linux kernel
Corpus path
include/linux/reset/reset-simple.h
Extension
.h
Size
1718 bytes
Lines
49
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 reset_simple_data {
	spinlock_t			lock;
	void __iomem			*membase;
	struct reset_controller_dev	rcdev;
	bool				active_low;
	bool				status_active_low;
	unsigned int			reset_us;
};

extern const struct reset_control_ops reset_simple_ops;

#endif /* __RESET_SIMPLE_H__ */

Annotation

Implementation Notes