函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:scripts\dtc\libfdt\libfdt.h Create Date:2022-07-27 07:15:32
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:dt_appendprop_u64 - append a 64-bit integer value to a property*@fdt: pointer to the device tree blob*@nodeoffset: offset of the node whose property to change*@name: name of the property to change*@val: 64-bit integer value to append to the property

函数原型:static inline int fdt_appendprop_u64(void *fdt, int nodeoffset, const char *name, uint64_t val)

返回类型:int

参数:

类型参数名称
void *fdt
intnodeoffset
const char *name
uint64_tval
1855  tmp等于cpu_to_fdt64(val)
1856  返回:fdt_appendprop(fdt, nodeoffset, name, & tmp, tmp的长度)