On Sat, 23 Mar 2019 at 04:24, Kangjie Lu <kjlu@xxxxxxx> wrote: > > In case octeon_alloc_soft_command fails, the fix reports the > error and goes to cleanup to avoid NULL pointer dereferences. > > Signed-off-by: Kangjie Lu <kjlu@xxxxxxx> > --- > V2: goto setup_nic_dev_free for cleanup > --- > drivers/mmc/host/mmc_spi.c | 2 +- > drivers/net/ethernet/cavium/liquidio/lio_vf_main.c | 12 ++++++++++++ > 2 files changed, 13 insertions(+), 1 deletion(-) > > diff --git a/drivers/mmc/host/mmc_spi.c b/drivers/mmc/host/mmc_spi.c > index 32fea585262b..a3533935e282 100644 > --- a/drivers/mmc/host/mmc_spi.c > +++ b/drivers/mmc/host/mmc_spi.c > @@ -820,7 +820,7 @@ mmc_spi_readblock(struct mmc_spi_host *host, struct spi_transfer *t, > > status = spi_sync_locked(spi, &host->m); > if (status < 0) { > - dev_dbg(&spi->dev, "read error %02x (%d)\n", status, status); > + dev_dbg(&spi->dev, "read error %d\n", status); Looks like a leftover from debugging? [...] Kind regards Uffe