Skip to content
Snippets Groups Projects
Commit 94e11560 authored by Vaibhav Gupta's avatar Vaibhav Gupta
Browse files

drivers: fmc-eeprom: Fix missing semi-colon


Signed-off-by: default avatarVaibhav Gupta <vaibhav.gupta@cern.ch>
parent 101eca15
Branches
Tags
No related merge requests found
......@@ -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;
}
......
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