tifm_sd: DATA_CARRY is not boolean in tifm_sd_transfer_data()
DATA_CARRY is not boolean Signed-off-by: Roel Kluin <12o3l@tiscali.nl> Signed-off-by: Pierre Ossman <drzeus@drzeus.cx> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
afbf331ed1
commit
ce63645234
|
@ -180,7 +180,7 @@ static void tifm_sd_transfer_data(struct tifm_sd *host)
|
|||
host->sg_pos++;
|
||||
if (host->sg_pos == host->sg_len) {
|
||||
if ((r_data->flags & MMC_DATA_WRITE)
|
||||
&& DATA_CARRY)
|
||||
&& (host->cmd_flags & DATA_CARRY))
|
||||
writel(host->bounce_buf_data[0],
|
||||
host->dev->addr
|
||||
+ SOCK_MMCSD_DATA);
|
||||
|
|
Loading…
Reference in New Issue