aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/mach-msm
diff options
context:
space:
mode:
authorHaley Teng <Haley_Teng@htc.com>2009-10-12 10:38:10 -0700
committerDaniel Walker <dwalker@codeaurora.org>2010-05-12 09:15:16 -0700
commit7632fba05197999fb0d24776b567682ebd62f62a (patch)
treefd576a73b6d45777952af33b327cdf21215e6fb2 /arch/arm/mach-msm
parent37521a3181123dc4a9584cc4b8572c08ea0a8274 (diff)
[ARM] msm: smd: Update the correct fTAIL pointer after reading from fifo
When we read data out of the sender's fifo, we need to advance the sender's tail pointer, not the receiver's. Signed-off-by: Haley Teng <Haley_Teng@htc.com> Acked-by: Dima Zavin <dima@android.com> Signed-off-by: Daniel Walker <dwalker@codeaurora.org>
Diffstat (limited to 'arch/arm/mach-msm')
-rw-r--r--arch/arm/mach-msm/smd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-msm/smd.c b/arch/arm/mach-msm/smd.c
index a88a8fc05f8..3fbba444e99 100644
--- a/arch/arm/mach-msm/smd.c
+++ b/arch/arm/mach-msm/smd.c
@@ -246,7 +246,7 @@ static void ch_read_done(struct smd_channel *ch, unsigned count)
{
BUG_ON(count > smd_stream_read_avail(ch));
ch->recv->tail = (ch->recv->tail + count) & ch->fifo_mask;
- ch->recv->fTAIL = 1;
+ ch->send->fTAIL = 1;
}
/* basic read interface to ch_read_{buffer,done} used