From: Imre Deak Date: Mon, 5 Apr 2010 23:09:40 +0000 (+0300) Subject: gpu: pvr: remove unused function args from SGXPostActivePowerEvent X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=58ca5eabbdfe40233e738b05893e740016f33ebd;p=sgx.git gpu: pvr: remove unused function args from SGXPostActivePowerEvent See the similar commits earlier on why this is justified. Signed-off-by: Imre Deak CC: Mark Underwood CC: Mark Riding Reviewed-by: Topi Pohjolainen Reviewed-by: Ville Syrjälä --- diff --git a/pvr/sgxutils.c b/pvr/sgxutils.c index 1bf6ab1..469fb58 100644 --- a/pvr/sgxutils.c +++ b/pvr/sgxutils.c @@ -44,8 +44,7 @@ #include #include -static void SGXPostActivePowerEvent(struct PVRSRV_DEVICE_NODE *psDeviceNode, - u32 ui32CallerID) +static void SGXPostActivePowerEvent(struct PVRSRV_DEVICE_NODE *psDeviceNode) { struct PVRSRV_SGXDEV_INFO *psDevInfo = psDeviceNode->pvDevice; struct SGXMKIF_HOST_CTL __iomem *psSGXHostCtl = @@ -88,7 +87,7 @@ void SGXTestActivePowerEvent(struct PVRSRV_DEVICE_NODE *psDeviceNode, psDeviceNode->sDevId.ui32DeviceIndex, PVRSRV_POWER_STATE_D3); if (eError == PVRSRV_OK) - SGXPostActivePowerEvent(psDeviceNode, ui32CallerID); + SGXPostActivePowerEvent(psDeviceNode); PDUMPRESUME();