aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6655
diff options
context:
space:
mode:
authorArchana kumari <archanakumari959@gmail.com>2013-10-18 01:01:55 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-10-17 13:32:35 -0700
commitf1f9f35019507d9f530c6a65906fb7c2e13a4b58 (patch)
treee9a1ec3e31ae87ff72f4bf9491acfc8feca0d93b /drivers/staging/vt6655
parentStaging: sb105x: Removing trailing whitespaces (diff)
downloadlinux-dev-f1f9f35019507d9f530c6a65906fb7c2e13a4b58.tar.xz
linux-dev-f1f9f35019507d9f530c6a65906fb7c2e13a4b58.zip
staging: vt6655:removed incorrect casting in hostap.c
This patch fixes the following type of sparse warnings: drivers/staging/vt6655/hostap.c:733:42: warning: cast from restricted gfp_t drivers/staging/vt6655/hostap.c:733:42: warning: incorrect type in argument 2 (different base types) drivers/staging/vt6655/hostap.c:733:42: expected restricted gfp_t [usertype] flags drivers/staging/vt6655/hostap.c:733:42: got int [signed] <noident> Signed-off-by: Archana kumari <archanakumari959@gmail.com> Reviewed-by: Josh Triplett <josh@joshtriplett.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6655')
-rw-r--r--drivers/staging/vt6655/hostap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/vt6655/hostap.c b/drivers/staging/vt6655/hostap.c
index fdd63b60b7c0..aab0012bba92 100644
--- a/drivers/staging/vt6655/hostap.c
+++ b/drivers/staging/vt6655/hostap.c
@@ -730,7 +730,7 @@ int vt6655_hostap_ioctl(PSDevice pDevice, struct iw_point *p)
p->length > VIAWGET_HOSTAPD_MAX_BUF_SIZE || !p->pointer)
return -EINVAL;
- param = kmalloc((int)p->length, (int)GFP_KERNEL);
+ param = kmalloc((int)p->length, GFP_KERNEL);
if (param == NULL)
return -ENOMEM;