See the earlier commit with a similar change on why this is justified.
Signed-off-by: Imre Deak <imre.deak@nokia.com>
CC: Mark Underwood <mark.underwood@imgtec.com>
CC: Mark Riding <mark.riding@imgtec.com>
Reviewed-by: Topi Pohjolainen <topi.pohjolainen@nokia.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@nokia.com>
}
LOOP_UNTIL_TIMEOUT(MAX_HW_TIME_US) {
- if (PVRSRVProcessQueues(KERNEL_ID, IMG_FALSE) !=
+ if (PVRSRVProcessQueues(IMG_FALSE) !=
PVRSRV_ERROR_PROCESSING_BLOCKED) {
goto ProcessedQueues;
}
}
LOOP_UNTIL_TIMEOUT(MAX_HW_TIME_US) {
- if (PVRSRVProcessQueues(KERNEL_ID, IMG_FALSE) !=
+ if (PVRSRVProcessQueues(IMG_FALSE) !=
PVRSRV_ERROR_PROCESSING_BLOCKED) {
goto ProcessedQueues;
}
psDeviceNode = psDeviceNode->psNext;
}
- if (PVRSRVProcessQueues(ISR_ID, IMG_FALSE) ==
+ if (PVRSRVProcessQueues(IMG_FALSE) ==
PVRSRV_ERROR_PROCESSING_BLOCKED)
- PVRSRVProcessQueues(ISR_ID, IMG_FALSE);
+ PVRSRVProcessQueues(IMG_FALSE);
if (psSysData->psGlobalEventObject) {
void *hOSEventKM =
return eError;
}
-enum PVRSRV_ERROR PVRSRVProcessQueues(u32 ui32CallerID, IMG_BOOL bFlush)
+enum PVRSRV_ERROR PVRSRVProcessQueues(IMG_BOOL bFlush)
{
struct PVRSRV_QUEUE_INFO *psQueue;
struct SYS_DATA *psSysData;
u32 ui32AllocSize;
};
-enum PVRSRV_ERROR PVRSRVProcessQueues(u32 ui32CallerID, IMG_BOOL bFlush);
+enum PVRSRV_ERROR PVRSRVProcessQueues(IMG_BOOL bFlush);
#if defined(__KERNEL__)
#include <linux/types.h>
SGXScheduleProcessQueuesKM(psDeviceNode);
- PVRSRVProcessQueues(ui32CallerID, IMG_TRUE);
+ PVRSRVProcessQueues(IMG_TRUE);
}
static unsigned long sgx_reset_forced;