函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

函数名称:fdt_set_name

函数原型:int fdt_set_name(void *fdt, int nodeoffset, const char *name)

返回类型:int

参数:

类型参数名称
void *fdt
intnodeoffset
const char *name
228  namep等于fdt_get_name(fdt, nodeoffset, & oldlen)
229  如果非namep则返回:oldlen
232  newlen等于strlen(name)
234  err等于fdt_splice_struct_(fdt, namep, FDT_TAGALIGN(oldlen + 1), FDT_TAGALIGN(newlen + 1))
236  如果err则返回:err
239  内存复制(namep, name, newlen + 1)
240  返回:0