[PATCH v3 2/3] staging: vt6655: removed incorrect casting in ioctl.c

2014-04-11 Thread Silvio Fricke
This patch fixes the following type of sparse warnings: drivers/staging/vt6655/ioctl.c:308:104: warning: cast from restricted gfp_t drivers/staging/vt6655/ioctl.c:579:109: warning: cast from restricted gfp_t Signed-off-by: Silvio Fricke --- drivers/staging/vt6655/ioctl.c | 6 -- 1 file

[PATCH v3 3/3] staging: vt6655: removed incorrect casting in iwctl.c

2014-04-11 Thread Silvio Fricke
This patch fixes the following type of sparse warning: drivers/staging/vt6655/iwctl.c:1846:35: warning: cast from restricted gfp_t Signed-off-by: Silvio Fricke --- drivers/staging/vt6655/iwctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/vt6655/iwctl.c

[PATCH v3 1/3] staging: vt6655: removed incorrect casting in wpactl.c

2014-04-11 Thread Silvio Fricke
-by: Silvio Fricke --- drivers/staging/vt6655/wpactl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/vt6655/wpactl.c b/drivers/staging/vt6655/wpactl.c index d17224f..4745429 100644 --- a/drivers/staging/vt6655/wpactl.c +++ b/drivers/staging/vt6655/wpactl.c

[PATCH v3 0/3] remove wrong cast of gfp_t flags

2014-04-11 Thread Silvio Fricke
e sure to let you know :) I removed it. Bye, Silvio v3: * no 'WIP'! Don't do that! v2: * signed-off and message are not the same address Silvio Fricke (3): staging: vt6655: removed incorrect casting in wpactl.c staging: vt6655: removed incorrect casting in ioctl.c

[WIP] [PATCH v2 2/3] staging: vt6655: removed incorrect casting in ioctl.c

2014-04-04 Thread Silvio Fricke
This patch fixes the following type of sparse warnings: drivers/staging/vt6655/ioctl.c:308:104: warning: cast from restricted gfp_t drivers/staging/vt6655/ioctl.c:579:109: warning: cast from restricted gfp_t Signed-off-by: Silvio Fricke --- drivers/staging/vt6655/ioctl.c | 6 -- 1 file

[WIP] [PATCH v2 0/3] remove wrong cast of gfp_t flags

2014-04-04 Thread Silvio Fricke
Hi Dan, thanks for your review. Attached second version of this series. Cheers, Silvio Silvio Fricke (3): staging: vt6655: removed incorrect casting in wpactl.c staging: vt6655: removed incorrect casting in ioctl.c staging: vt6655: removed incorrect casting in iwctl.c drivers

[WIP] [PATCH v2 3/3] staging: vt6655: removed incorrect casting in iwctl.c

2014-04-04 Thread Silvio Fricke
This patch fixes the following type of sparse warning: drivers/staging/vt6655/iwctl.c:1846:35: warning: cast from restricted gfp_t Signed-off-by: Silvio Fricke --- drivers/staging/vt6655/iwctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/vt6655/iwctl.c

[WIP] [PATCH v2 1/3] staging: vt6655: removed incorrect casting in wpactl.c

2014-04-04 Thread Silvio Fricke
-by: Silvio Fricke --- drivers/staging/vt6655/wpactl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/vt6655/wpactl.c b/drivers/staging/vt6655/wpactl.c index d17224f..4745429 100644 --- a/drivers/staging/vt6655/wpactl.c +++ b/drivers/staging/vt6655/wpactl.c

[WIP] [PATCH 0/3] remove wrong cast of gfp_t flags

2014-03-25 Thread silvio
From: Silvio F Hi, I have seen this patch, but in this and two other files we have the same wrong casting. This three little patches remove wrong cast for gfp_t-flags in kamlloc, kzalloc, ... Please review this patch. These patches are WIP because I have no hardware and can only do a compile

[PATCH 3/3] staging: vt6655: removed incorrect casting in iwctl.c

2014-03-25 Thread silvio
From: Silvio F This patch fixes the following type of sparse warning: drivers/staging/vt6655/iwctl.c:1846:35: warning: cast from restricted gfp_t Signed-off-by: Silvio F --- drivers/staging/vt6655/iwctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging

[PATCH 2/3] staging: vt6655: removed incorrect casting in ioctl.c

2014-03-25 Thread silvio
From: Silvio F This patch fixes the following type of sparse warnings: drivers/staging/vt6655/ioctl.c:308:104: warning: cast from restricted gfp_t drivers/staging/vt6655/ioctl.c:579:109: warning: cast from restricted gfp_t Signed-off-by: Silvio F --- drivers/staging/vt6655/ioctl.c | 6

[PATCH 1/3] staging: vt6655: removed incorrect casting in wpactl.c

2014-03-25 Thread silvio
From: Silvio F This patch fixes the following type of sparse warnings: drivers/staging/vt6655/wpactl.c:596:47: warning: cast from restricted gfp_t drivers/staging/vt6655/wpactl.c:638:68: warning: cast from restricted gfp_t drivers/staging/vt6655/wpactl.c:860:42: warning: cast from restricted

[PATCH] staging: unisys: kmalloc/memset to kzalloc conversation

2014-03-18 Thread Silvio F
er transformation to kzalloc only a rename for kzalloc and was completly removed. Signed-off-by: Silvio F --- drivers/staging/unisys/include/uisutils.h | 7 --- drivers/staging/unisys/virthba/virthba.c| 9 - drivers/staging/unisys/virtpci/virtpci.c| 3

[patch][wip] staging: unisys: kmalloc/memset move to kzalloc

2014-03-18 Thread Silvio F
Hi, I have followed this thread and have seen that not all parts was kcalloc'ized. Please review this patch and maybe include it. This patch is WIP because I have no hardware and can only do a compile test. version 2: * remove ALLOC_CMDRSP define Bye, S