Commit 63fde20a authored by Alessandro Rubini's avatar Alessandro Rubini

trivial: remove an unused leftover return statement

Signed-off-by: Alessandro Rubini's avatarAlessandro Rubini <rubini@gnudd.com>
parent 5e622cd6
......@@ -127,8 +127,6 @@ static int svec_read_ee(struct fmc_device *fmc, int pos, void *data, int len)
if (!(fmc->flags & FMC_DEVICE_HAS_GOLDEN))
return -ENOTSUPP;
return svec_eeprom_read(fmc, pos, data, len);
return -ENOTSUPP;
}
static int svec_write_ee(struct fmc_device *fmc, int pos,
......@@ -138,8 +136,6 @@ static int svec_write_ee(struct fmc_device *fmc, int pos,
if (!(fmc->flags & FMC_DEVICE_HAS_GOLDEN))
return -ENOTSUPP;
return svec_eeprom_write(fmc, pos, data, len);
return -ENOTSUPP;
}
static struct fmc_operations svec_fmc_operations = {
......
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