include/linux/of_fdt.h
Source file repositories/reference/linux-study-clean/include/linux/of_fdt.h
File Facts
- System
- Linux kernel
- Corpus path
include/linux/of_fdt.h- Extension
.h- Size
- 3904 bytes
- Lines
- 108
- 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.
- Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/types.hlinux/init.hlinux/errno.h
Detected Declarations
struct device_nodefunction early_init_dt_check_for_usable_mem_rangefunction early_init_fdt_scan_reserved_memfunction unflatten_device_tree
Annotated Snippet
static inline void early_init_dt_check_for_usable_mem_range(void) {}
static inline int early_init_dt_scan_chosen_stdout(void) { return -ENODEV; }
static inline void early_init_fdt_scan_reserved_mem(void) {}
static inline void early_init_fdt_reserve_self(void) {}
static inline const char *of_flat_dt_get_machine_name(void) { return NULL; }
static inline void unflatten_device_tree(void) {}
static inline void unflatten_and_copy_device_tree(void) {}
#endif /* CONFIG_OF_EARLY_FLATTREE */
#endif /* __ASSEMBLY__ */
#endif /* _LINUX_OF_FDT_H */
Annotation
- Immediate include surface: `linux/types.h`, `linux/init.h`, `linux/errno.h`.
- Detected declarations: `struct device_node`, `function early_init_dt_check_for_usable_mem_range`, `function early_init_fdt_scan_reserved_mem`, `function unflatten_device_tree`.
- Atlas domain: Core OS / Core Kernel Interface.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.