gpu: pvr: pdump: SYS_DATA::bPowerUpPDumped is unused
authorLuc Verhaegen <Luc.Verhaegen@basyskom.de>
Fri, 11 Mar 2011 14:02:21 +0000 (15:02 +0100)
committerGrazvydas Ignotas <notasas@gmail.com>
Sun, 20 May 2012 18:43:03 +0000 (21:43 +0300)
Nothing in the graphics stack uses this.

Signed-off-by: Luc Verhaegen <Luc.Verhaegen@basyskom.de>
Signed-off-by: Imre Deak <imre.deak@nokia.com>
pvr/bridged_pvr_bridge.c
pvr/pvrsrv.c
pvr/syscommon.h

index 7409816..0c24a68 100644 (file)
@@ -1481,15 +1481,6 @@ static int PVRSRVConnectBW(u32 ui32BridgeID, void *psBridgeIn,
        psConnectServicesOUT->hKernelServices = psPerProc->hPerProcData;
        psConnectServicesOUT->eError = PVRSRV_OK;
 
-#if defined(PDUMP)
-
-       {
-               struct SYS_DATA *psSysData;
-               SysAcquireData(&psSysData);
-               psSysData->bPowerUpPDumped = IMG_FALSE;
-       }
-#endif
-
        return 0;
 }
 
index 332e000..72365ea 100644 (file)
@@ -146,10 +146,6 @@ enum PVRSRV_ERROR PVRSRVInit(struct SYS_DATA *psSysData)
        psSysData->eCurrentPowerState = PVRSRV_POWER_STATE_D0;
        psSysData->eFailedPowerState = PVRSRV_POWER_Unspecified;
 
-#if defined(PDUMP)
-       psSysData->bPowerUpPDumped = IMG_FALSE;
-#endif
-
        if (OSAllocMem(PVRSRV_PAGEABLE_SELECT,
                       sizeof(struct PVRSRV_EVENTOBJECT),
                       (void **) &psSysData->psGlobalEventObject,
index c55ac38..5201210 100644 (file)
@@ -78,7 +78,7 @@ struct SYS_DATA {
        char *pszVersionString;
        struct PVRSRV_EVENTOBJECT *psGlobalEventObject;
 #if defined(PDUMP)
-       IMG_BOOL bPowerUpPDumped;
+       IMG_BOOL Unused;
 #endif
 };