include/linux/platform_data/shmob_drm.h

Source file repositories/reference/linux-study-clean/include/linux/platform_data/shmob_drm.h

File Facts

System
Linux kernel
Corpus path
include/linux/platform_data/shmob_drm.h
Extension
.h
Size
822 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 shmob_drm_panel_data {
	unsigned int width_mm;		/* Panel width in mm */
	unsigned int height_mm;		/* Panel height in mm */
	struct videomode mode;
};

struct shmob_drm_interface_data {
	unsigned int bus_fmt;		/* MEDIA_BUS_FMT_* */
	unsigned int clk_div;
};

struct shmob_drm_platform_data {
	enum shmob_drm_clk_source clk_source;
	struct shmob_drm_interface_data iface;
	struct shmob_drm_panel_data panel;
};

#endif /* __SHMOB_DRM_H__ */

Annotation

Implementation Notes