summaryrefslogtreecommitdiff
path: root/drivers/staging/vt6656/int.c
diff options
context:
space:
mode:
authorJesper Juhl <jj@chaosbits.net>2012-06-27 20:01:47 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-07-06 23:10:54 (GMT)
commit92fa8971f31b25e041a74a1913bca8f7f3d6e48d (patch)
tree0b6f88e0c8996dbcf89e36fe8e01dacc7553bb98 /drivers/staging/vt6656/int.c
parentea15b7b219b19c9ddb668ab3d5d727f46900605e (diff)
downloadlinux-fsl-qoriq-92fa8971f31b25e041a74a1913bca8f7f3d6e48d.tar.xz
staging: vt6656: int.c: Remove unneeded cast
When assigning a void* to a variable <of some other type>, the value is cast implicitly - there's no need for explicit cast. Signed-off-by: Jesper Juhl <jj@chaosbits.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6656/int.c')
-rw-r--r--drivers/staging/vt6656/int.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/vt6656/int.c b/drivers/staging/vt6656/int.c
index 286ac3e..e7f6624 100644
--- a/drivers/staging/vt6656/int.c
+++ b/drivers/staging/vt6656/int.c
@@ -77,7 +77,7 @@ static int msglevel = MSG_LEVEL_INFO; /* MSG_LEVEL_DEBUG */
-*/
void INTvWorkItem(void *Context)
{
- PSDevice pDevice = (PSDevice) Context;
+ PSDevice pDevice = Context;
int ntStatus;
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"---->Interrupt Polling Thread\n");