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:
parent
7a5cd5aea2
commit
882edf59fc
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user