mirror of
https://github.com/torvalds/linux.git
synced 2026-05-27 16:44:58 +02:00
mmc: mmc_spi: remove unnecessary check in mmc_spi_setup_data_message()
An earlier commit changed the outer if statement from
"if (multiple || write) {" to "if (write) {" so now we know that "write"
is true and no longer need to check. Delete the unnecessary check.
Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
Link: https://lore.kernel.org/r/aKcR2ea747xkw_it@stanley.mountain
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
This commit is contained in:
parent
9674f9e325
commit
1f69220b09
|
|
@ -566,7 +566,7 @@ mmc_spi_setup_data_message(struct mmc_spi_host *host, bool multiple, bool write)
|
|||
if (write) {
|
||||
t = &host->early_status;
|
||||
memset(t, 0, sizeof(*t));
|
||||
t->len = write ? sizeof(scratch->status) : 1;
|
||||
t->len = sizeof(scratch->status);
|
||||
t->tx_buf = host->ones;
|
||||
t->rx_buf = scratch->status;
|
||||
t->cs_change = 1;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user