mirror of
https://github.com/torvalds/linux.git
synced 2026-01-25 15:03:52 +08:00
ACPI: EC: Drop unneeded result variable from ec_write()
Return the acpi_ec_write() return value directly instead of storing it in another redundant variable. Reported-by: Zeal Robot <zealci@zte.com.cn> Signed-off-by: ye xingchen <ye.xingchen@zte.com.cn> [ rjw: Subject and changelog edits ] Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
committed by
Rafael J. Wysocki
parent
b90cb10531
commit
b3c0e38bdb
@@ -917,14 +917,10 @@ EXPORT_SYMBOL(ec_read);
|
||||
|
||||
int ec_write(u8 addr, u8 val)
|
||||
{
|
||||
int err;
|
||||
|
||||
if (!first_ec)
|
||||
return -ENODEV;
|
||||
|
||||
err = acpi_ec_write(first_ec, addr, val);
|
||||
|
||||
return err;
|
||||
return acpi_ec_write(first_ec, addr, val);
|
||||
}
|
||||
EXPORT_SYMBOL(ec_write);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user