[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>
This commit is contained in:
Haley Teng 2009-10-12 10:38:10 -07:00 committed by Daniel Walker
parent 37521a3181
commit 7632fba051

View File

@ -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