Commit e317eb14 authored by Vaibhav Gupta's avatar Vaibhav Gupta

drivers: fmc-eeprom: Fix missing semi-colon

Signed-off-by: 's avatarVaibhav Gupta <vaibhav.gupta@cern.ch>
parent bc64c44f
Pipeline #4115 failed with stages
in 0 seconds
......@@ -192,7 +192,7 @@ static int __fmc_slot_eeprom_add(struct fmc_slot *slot,
kfree(nvmem_parent_name);
if (IS_ERR_OR_NULL(slot->nvmem)) {
int err = PTR_ERR(slot->nvmem)
int err = PTR_ERR(slot->nvmem);
slot->nvmem = NULL;
return err;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment