Message ID | 1532508374-28957-1-git-send-email-yamada.masahiro@socionext.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | mmc: tmio: remove unneeded variable in tmio_mmc_start_command() | expand |
On Wed, Jul 25, 2018 at 05:46:14PM +0900, Masahiro Yamada wrote: > Pass TMIO_MASK_CMD to tmio_mmc_enable_mmc_irqs() directly, > and remove the variable, irq_mask. > > Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Reviewed-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
On 25 July 2018 at 10:46, Masahiro Yamada <yamada.masahiro@socionext.com> wrote: > Pass TMIO_MASK_CMD to tmio_mmc_enable_mmc_irqs() directly, > and remove the variable, irq_mask. > > Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Thanks, applied for next! Kind regards Uffe > --- > > drivers/mmc/host/tmio_mmc_core.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/drivers/mmc/host/tmio_mmc_core.c b/drivers/mmc/host/tmio_mmc_core.c > index 3080299..3cb554c 100644 > --- a/drivers/mmc/host/tmio_mmc_core.c > +++ b/drivers/mmc/host/tmio_mmc_core.c > @@ -309,7 +309,6 @@ static int tmio_mmc_start_command(struct tmio_mmc_host *host, > { > struct mmc_data *data = host->data; > int c = cmd->opcode; > - u32 irq_mask = TMIO_MASK_CMD; > > switch (mmc_resp_type(cmd)) { > case MMC_RSP_NONE: c |= RESP_NONE; break; > @@ -349,7 +348,7 @@ static int tmio_mmc_start_command(struct tmio_mmc_host *host, > c |= TRANSFER_READ; > } > > - tmio_mmc_enable_mmc_irqs(host, irq_mask); > + tmio_mmc_enable_mmc_irqs(host, TMIO_MASK_CMD); > > /* Fire off the command */ > sd_ctrl_write32_as_16_and_16(host, CTL_ARG_REG, cmd->arg); > -- > 2.7.4 > -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/mmc/host/tmio_mmc_core.c b/drivers/mmc/host/tmio_mmc_core.c index 3080299..3cb554c 100644 --- a/drivers/mmc/host/tmio_mmc_core.c +++ b/drivers/mmc/host/tmio_mmc_core.c @@ -309,7 +309,6 @@ static int tmio_mmc_start_command(struct tmio_mmc_host *host, { struct mmc_data *data = host->data; int c = cmd->opcode; - u32 irq_mask = TMIO_MASK_CMD; switch (mmc_resp_type(cmd)) { case MMC_RSP_NONE: c |= RESP_NONE; break; @@ -349,7 +348,7 @@ static int tmio_mmc_start_command(struct tmio_mmc_host *host, c |= TRANSFER_READ; } - tmio_mmc_enable_mmc_irqs(host, irq_mask); + tmio_mmc_enable_mmc_irqs(host, TMIO_MASK_CMD); /* Fire off the command */ sd_ctrl_write32_as_16_and_16(host, CTL_ARG_REG, cmd->arg);
Pass TMIO_MASK_CMD to tmio_mmc_enable_mmc_irqs() directly, and remove the variable, irq_mask. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> --- drivers/mmc/host/tmio_mmc_core.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)