提交 85c1912d 编写于 作者: J Jarkko Nikula 提交者: Mark Brown

spi: mpc512x: Call mpc512x_psc_spi_transfer_setup() unconditionally

SPI core validates both bits_per_word and speed_hz transfer parameters and
thus the if statement here is needless as it will always call the
mpc512x_psc_spi_transfer_setup().
Signed-off-by: NJarkko Nikula <jarkko.nikula@linux.intel.com>
Signed-off-by: NMark Brown <broonie@kernel.org>
上级 6ff33f39
...@@ -302,11 +302,9 @@ static int mpc512x_psc_spi_msg_xfer(struct spi_master *master, ...@@ -302,11 +302,9 @@ static int mpc512x_psc_spi_msg_xfer(struct spi_master *master,
cs_change = 1; cs_change = 1;
status = 0; status = 0;
list_for_each_entry(t, &m->transfers, transfer_list) { list_for_each_entry(t, &m->transfers, transfer_list) {
if (t->bits_per_word || t->speed_hz) {
status = mpc512x_psc_spi_transfer_setup(spi, t); status = mpc512x_psc_spi_transfer_setup(spi, t);
if (status < 0) if (status < 0)
break; break;
}
if (cs_change) if (cs_change)
mpc512x_psc_spi_activate_cs(spi); mpc512x_psc_spi_activate_cs(spi);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册