include/linux/clk/clk-conf.h

Source file repositories/reference/linux-study-clean/include/linux/clk/clk-conf.h

File Facts

System
Linux kernel
Corpus path
include/linux/clk/clk-conf.h
Extension
.h
Size
507 bytes
Lines
25
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

#ifndef __CLK_CONF_H
#define __CLK_CONF_H

#include <linux/types.h>

struct device_node;

#if defined(CONFIG_OF) && defined(CONFIG_COMMON_CLK)
int of_clk_set_defaults(struct device_node *node, bool clk_supplier);
#else
static inline int of_clk_set_defaults(struct device_node *node,
				      bool clk_supplier)
{
	return 0;
}
#endif

#endif /* __CLK_CONF_H */

Annotation

Implementation Notes