include/linux/soc/cirrus/ep93xx.h

Source file repositories/reference/linux-study-clean/include/linux/soc/cirrus/ep93xx.h

File Facts

System
Linux kernel
Corpus path
include/linux/soc/cirrus/ep93xx.h
Extension
.h
Size
894 bytes
Lines
39
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 ep93xx_regmap_adev {
	struct auxiliary_device adev;
	struct regmap *map;
	void __iomem *base;
	spinlock_t *lock;
	void (*write)(struct regmap *map, spinlock_t *lock, unsigned int reg,
		      unsigned int val);
	void (*update_bits)(struct regmap *map, spinlock_t *lock,
			    unsigned int reg, unsigned int mask, unsigned int val);
};

#define to_ep93xx_regmap_adev(_adev) \
	container_of((_adev), struct ep93xx_regmap_adev, adev)

#endif

Annotation

Implementation Notes