include/linux/soc/qcom/pmic_glink.h

Source file repositories/reference/linux-study-clean/include/linux/soc/qcom/pmic_glink.h

File Facts

System
Linux kernel
Corpus path
include/linux/soc/qcom/pmic_glink.h
Extension
.h
Size
831 bytes
Lines
34
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 pmic_glink_hdr {
	__le32 owner;
	__le32 type;
	__le32 opcode;
};

int pmic_glink_send(struct pmic_glink_client *client, void *data, size_t len);

struct pmic_glink_client *devm_pmic_glink_client_alloc(struct device *dev,
						       unsigned int id,
						       void (*cb)(const void *, size_t, void *),
						       void (*pdr)(void *, int),
						       void *priv);
void pmic_glink_client_register(struct pmic_glink_client *client);

#endif

Annotation

Implementation Notes