From 478e27eb7ac44f3e67aefd56085f5da324501f4f Mon Sep 17 00:00:00 2001 From: Markinus Date: Sat, 4 Sep 2010 11:17:45 +0200 Subject: [PATCH] htcleo: add fix for PPP bug It's a hack, we have to find out why we have to remove the mutexes --- arch/arm/mach-msm/smd_tty.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-msm/smd_tty.c b/arch/arm/mach-msm/smd_tty.c index efd52ed0..0f23be8c 100644 --- a/arch/arm/mach-msm/smd_tty.c +++ b/arch/arm/mach-msm/smd_tty.c @@ -204,12 +204,12 @@ static int smd_tty_write(struct tty_struct *tty, ** never be able to write more data than there ** is currently space for */ - mutex_lock(&smd_tty_lock); +// mutex_lock(&smd_tty_lock); avail = smd_write_avail(info->ch); if (len > avail) len = avail; ret = smd_write(info->ch, buf, len); - mutex_unlock(&smd_tty_lock); +// mutex_unlock(&smd_tty_lock); return ret; }