summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesper Juhl <jj@chaosbits.net>2012-06-27 22:01:47 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-07-06 16:10:54 -0700
commit92fa8971f31b25e041a74a1913bca8f7f3d6e48d (patch)
tree0b6f88e0c8996dbcf89e36fe8e01dacc7553bb98
parentea15b7b219b19c9ddb668ab3d5d727f46900605e (diff)
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>
-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 286ac3e46075..e7f66241b9b5 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");