VOS_UINT32 uttest_SCM_SoftDecodeDataRcv_case3(VOS_VOID)
{
	VOS_UINT8 aucBuffer[1000] = {0}; 
	VOS_UINT32 ulLen = 1000;

	return SCM_SoftDecodeDataRcv(aucBuffer, ulLen);
}
VOS_UINT32 SCM_SoftDecodeCfgDataRcv(VOS_UINT8 *pucBuffer, VOS_UINT32 ulLen)
{
    VOS_UINT32                          ulRstl;
    VOS_ULONG                           ulLockLevel;

    VOS_SpinLockIntLock(&g_stScmSoftDecodeDataRcvSpinLock, ulLockLevel);

    ulRstl = SCM_SoftDecodeDataRcv(pucBuffer, ulLen);

    VOS_SpinUnlockIntUnlock(&g_stScmSoftDecodeDataRcvSpinLock, ulLockLevel);

    return ulRstl;
}