mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 19:30:30 +09:00
MIPS: Loongson: Fix return value of loongson_hwmon_init
[ Upstream commitdece3c2a32] When call function hwmon_device_register failed, use the actual return value instead of always -ENOMEM. Fixes:64f09aa967("MIPS: Loongson-3: Add CPU Hwmon platform driver") Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn> Signed-off-by: Paul Burton <paulburton@kernel.org> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: James Hogan <jhogan@kernel.org> Cc: Huacai Chen <chenhc@lemote.com> Cc: Jiaxun Yang <jiaxun.yang@flygoat.com> Cc: linux-mips@vger.kernel.org Cc: linux-kernel@vger.kernel.org Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
44369fbe3a
commit
00a9d1a860
@@ -155,7 +155,7 @@ static int __init loongson_hwmon_init(void)
|
||||
|
||||
cpu_hwmon_dev = hwmon_device_register(NULL);
|
||||
if (IS_ERR(cpu_hwmon_dev)) {
|
||||
ret = -ENOMEM;
|
||||
ret = PTR_ERR(cpu_hwmon_dev);
|
||||
pr_err("hwmon_device_register fail!\n");
|
||||
goto fail_hwmon_device_register;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user