From: Devendra Naga Date: Thu, 25 Oct 2012 05:50:58 +0000 (-0400) Subject: staging: csr: remove panic at locking the mutex X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=585628255a8c359d3db81818a23acfc6f22ff6d8;p=GitHub%2FLineageOS%2Fandroid_kernel_samsung_universal7580.git staging: csr: remove panic at locking the mutex when down_interruptible fail, means a signal occur, or any other failure we are panicing, and it seems that we should not panic, instead we would have done a spinlock, but currently removing the panic call. Signed-off-by: Devendra Naga Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/csr/csr_framework_ext.c b/drivers/staging/csr/csr_framework_ext.c index e203f606de3..e62878ecbd2 100644 --- a/drivers/staging/csr/csr_framework_ext.c +++ b/drivers/staging/csr/csr_framework_ext.c @@ -82,7 +82,6 @@ CsrResult CsrMutexLock(CsrMutexHandle *mutexHandle) if (down_interruptible(mutexHandle)) { - CsrPanic(CSR_TECH_FW, CSR_PANIC_FW_UNEXPECTED_VALUE, "CsrMutexLock Failed"); return CSR_FE_RESULT_INVALID_POINTER; }