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 <devendra.aaru@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
9c2c438cee
commit
585628255a
@@ -82,7 +82,6 @@ CsrResult CsrMutexLock(CsrMutexHandle *mutexHandle)
|
|||||||
|
|
||||||
if (down_interruptible(mutexHandle))
|
if (down_interruptible(mutexHandle))
|
||||||
{
|
{
|
||||||
CsrPanic(CSR_TECH_FW, CSR_PANIC_FW_UNEXPECTED_VALUE, "CsrMutexLock Failed");
|
|
||||||
return CSR_FE_RESULT_INVALID_POINTER;
|
return CSR_FE_RESULT_INVALID_POINTER;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user