greybus: sdio: pass only data pointer to tranfer funtion

No need to pass the all request to the transfer related funtctions.

Signed-off-by: Rui Miguel Silva <rui.silva@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
This commit is contained in:
Rui Miguel Silva 2015-07-02 19:11:34 +01:00 committed by Greg Kroah-Hartman
parent 7a5cd5aea2
commit 882edf59fc

View file

@ -285,9 +285,8 @@ static int _gb_sdio_recv(struct gb_sdio_host *host, struct mmc_data *data,
return 0;
}
static int gb_sdio_transfer(struct gb_sdio_host *host, struct mmc_request *mrq)
static int gb_sdio_transfer(struct gb_sdio_host *host, struct mmc_data *data)
{
struct mmc_data *data = mrq->data;
size_t left, len;
off_t skip = 0;
int ret = 0;
@ -438,7 +437,7 @@ static void gb_sdio_mrq_work(struct work_struct *work)
goto done;
if (mrq->data) {
ret = gb_sdio_transfer(host, host->mrq);
ret = gb_sdio_transfer(host, host->mrq->data);
if (ret < 0)
goto done;
}