Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e1efa2a3ea266e093f690c20af7522d95540f74f
Commit:     e1efa2a3ea266e093f690c20af7522d95540f74f
Parent:     513f54b78f9594927ede66b6c66a70c1bae0c4ca
Author:     Pavel Pisa <[EMAIL PROTECTED]>
AuthorDate: Fri Oct 26 19:29:49 2007 +0200
Committer:  Jens Axboe <[EMAIL PROTECTED]>
CommitDate: Mon Oct 29 09:18:04 2007 +0100

    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 <[EMAIL PROTECTED]>
    
     drivers/mmc/host/imxmmc.c |    2 +-
     1 files changed, 1 insertions(+), 1 deletions(-)
    Signed-off-by: Jens Axboe <[EMAIL PROTECTED]>
---
 drivers/mmc/host/imxmmc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/mmc/host/imxmmc.c b/drivers/mmc/host/imxmmc.c
index fc72e1f..f2070a1 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);
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to