aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorPavel Pisa <ppisa4lists@pikron.com>2007-10-26 19:29:49 +0200
committerJens Axboe <jens.axboe@oracle.com>2007-10-29 09:18:04 +0100
commite1efa2a3ea266e093f690c20af7522d95540f74f (patch)
treece9ed364f9a61f7dfbe38d9d48496dc3bb64a476 /drivers
parentsg_init_table() should use unsigned loop index variable (diff)
downloadlinux-dev-e1efa2a3ea266e093f690c20af7522d95540f74f.tar.xz
linux-dev-e1efa2a3ea266e093f690c20af7522d95540f74f.zip
Correction of "Update drivers to use sg helpers" patch for IMXMMC driver
The previous change omits "data->" prefix in the "data->sg" case. This change fixes kernel compilation. Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz> drivers/mmc/host/imxmmc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Signed-off-by: Jens Axboe <axboe@carl.home.kernel.dk>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/mmc/host/imxmmc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/imxmmc.c b/drivers/mmc/host/imxmmc.c
index fc72e1fadb6a..f2070a19cfa7 100644
--- a/drivers/mmc/host/imxmmc.c
+++ b/drivers/mmc/host/imxmmc.c
@@ -262,7 +262,7 @@ static void imxmci_setup_data(struct imxmci_host *host, struct mmc_data *data)
}
/* Convert back to virtual address */
- host->data_ptr = (u16*)sg_virt(sg);
+ host->data_ptr = (u16*)sg_virt(data->sg);
host->data_cnt = 0;
clear_bit(IMXMCI_PEND_DMA_DATA_b, &host->pending_events);