greybus: sdio: pass only data pointer to tranfer funtion
authorRui Miguel Silva <rui.silva@linaro.org>
Thu, 2 Jul 2015 18:11:34 +0000 (19:11 +0100)
committerGreg Kroah-Hartman <gregkh@google.com>
Mon, 6 Jul 2015 18:15:42 +0000 (11:15 -0700)
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>
drivers/staging/greybus/sdio.c

index 8dd833e..8e7b7ba 100644 (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;
        }