gpu: pvr: Remove needless NULL check in PVRSRVWrapExtMemoryKM.
authorJanusz Sobczak <janusz.sobczak@imgtec.com>
Mon, 9 Aug 2010 11:21:36 +0000 (13:21 +0200)
committerGrazvydas Ignotas <notasas@gmail.com>
Sun, 20 May 2012 18:09:42 +0000 (21:09 +0300)
Signed-off-by: Janusz Sobczak <janusz.sobczak@imgtec.com>
Signed-off-by: Imre Deak <imre.deak@nokia.com>
pvr/devicemem.c

index 72ebe6b..0fcd2e4 100644 (file)
@@ -833,11 +833,8 @@ enum PVRSRV_ERROR PVRSRVWrapExtMemoryKM(void *hDevCookie,
        return PVRSRV_OK;
 
 ErrorExitPhase4:
-       if (psMemInfo) {
-               FreeDeviceMem(psMemInfo);
-
-               psMemInfo = NULL;
-       }
+       FreeDeviceMem(psMemInfo);
+       psMemInfo = NULL;
 
 ErrorExitPhase3:
        if (psMemInfo) {