soc/qualcomm/ipq40xx/spi.c: Remove unuseful 'return' in void function
Change-Id: I0ca7cbbf6c4884b58b4ec8a8e3cbc77f118a42f2 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/61487 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
parent
facb9e4dca
commit
57cd69f293
|
@ -298,7 +298,6 @@ static void write_force_cs(const struct spi_slave *slave, int assert)
|
||||||
clrsetbits32(ds->regs->io_control,
|
clrsetbits32(ds->regs->io_control,
|
||||||
SPI_IO_CTRL_FORCE_CS_MSK, SPI_IO_CTRL_FORCE_CS_DIS);
|
SPI_IO_CTRL_FORCE_CS_MSK, SPI_IO_CTRL_FORCE_CS_DIS);
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -372,7 +371,6 @@ static void enable_io_config(struct ipq_spi_slave *ds,
|
||||||
QUP_CONF_INPUT_MSK, QUP_CONF_NO_INPUT);
|
QUP_CONF_INPUT_MSK, QUP_CONF_NO_INPUT);
|
||||||
}
|
}
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue