mirror of
https://github.com/torvalds/linux.git
synced 2026-05-24 15:12:13 +02:00
LoongArch: Check the return value when creating kobj
Add a check for the return value of kobject_create_and_add(), to ensure that the kobj allocation succeeds for later use. Cc: stable@vger.kernel.org Signed-off-by: Tao Cui <cuitao@kylinos.cn> Signed-off-by: Huacai Chen <chenhuacai@loongson.cn>
This commit is contained in:
parent
a9d13433fe
commit
51adb03e6b
|
|
@ -109,6 +109,8 @@ static int __init boardinfo_init(void)
|
|||
struct kobject *loongson_kobj;
|
||||
|
||||
loongson_kobj = kobject_create_and_add("loongson", firmware_kobj);
|
||||
if (!loongson_kobj)
|
||||
return -ENOMEM;
|
||||
|
||||
return sysfs_create_file(loongson_kobj, &boardinfo_attr.attr);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user