Commit b6789ee5 authored by Rui Miguel Silva's avatar Rui Miguel Silva Committed by Greg Kroah-Hartman

greybus: sdio: some cleanups in command function

Some cleanups in gb_sdio_command function, ret does not need to be
initialize and mrq is already pointing to request, no need to get it
from host.
Signed-off-by: default avatarRui Miguel Silva <rui.silva@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
parent 10ed1938
...@@ -379,7 +379,7 @@ static int gb_sdio_command(struct gb_sdio_host *host, struct mmc_command *cmd) ...@@ -379,7 +379,7 @@ static int gb_sdio_command(struct gb_sdio_host *host, struct mmc_command *cmd)
u8 cmd_flags; u8 cmd_flags;
u8 cmd_type; u8 cmd_type;
int i; int i;
int ret = 0; int ret;
switch (mmc_resp_type(cmd)) { switch (mmc_resp_type(cmd)) {
case MMC_RSP_NONE: case MMC_RSP_NONE:
...@@ -488,7 +488,7 @@ static void gb_sdio_mrq_work(struct work_struct *work) ...@@ -488,7 +488,7 @@ static void gb_sdio_mrq_work(struct work_struct *work)
goto done; goto done;
if (mrq->data) { if (mrq->data) {
ret = gb_sdio_transfer(host, host->mrq->data); ret = gb_sdio_transfer(host, mrq->data);
if (ret < 0) if (ret < 0)
goto done; goto done;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment