From 58ca5eabbdfe40233e738b05893e740016f33ebd Mon Sep 17 00:00:00 2001 From: Imre Deak Date: Tue, 6 Apr 2010 02:09:40 +0300 Subject: [PATCH] gpu: pvr: remove unused function args from SGXPostActivePowerEvent MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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ä --- pvr/sgxutils.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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(); -- 2.39.5