[PATCH v2 1/4] staging: unisys: declare visorchipset_ioctl static

2015-02-18 Thread Frederico Cadete
This symbol is not exported nor referenced anywhere else in the kernel. Signed-off-by: Frederico Cadete --- drivers/staging/unisys/visorchipset/file.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/staging/unisys/visorchipset/file.c b/drivers/staging/unisys

[PATCH v2 0/4] staging: unisys: a few checkpatch fixes

2015-02-18 Thread Frederico Cadete
Here are a few fixes of style warnings detected by checkpatch.pl in drivers/staging/unisys. Compared to v1 of the patch, changed the name of the structs in visorchipset_main.c to be lowercase, according to feedback from Dan Carpenter. Thanks, Dan. Regards, Frederico Cadete Frederico Cadete (4

[PATCH v2 3/4] staging: unisys: style: Replace typedefs with structs in visorchipset_main.c

2015-02-18 Thread Frederico Cadete
Signed-off-by: Frederico Cadete --- .../unisys/visorchipset/visorchipset_main.c| 22 +++--- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/drivers/staging/unisys/visorchipset/visorchipset_main.c b/drivers/staging/unisys/visorchipset/visorchipset_main.c

[PATCH v2 4/4] staging: unisys: style: remove unnecessary braces

2015-02-18 Thread Frederico Cadete
Signed-off-by: Frederico Cadete --- drivers/staging/unisys/visorchannel/visorchannel_funcs.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/drivers/staging/unisys/visorchannel/visorchannel_funcs.c b/drivers/staging/unisys/visorchannel/visorchannel_funcs.c index

[PATCH v2 2/4] staging: unisys: remove unused MESSAGE_ENVELOPE typedef

2015-02-18 Thread Frederico Cadete
Signed-off-by: Frederico Cadete --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 5 - 1 file changed, 5 deletions(-) diff --git a/drivers/staging/unisys/visorchipset/visorchipset_main.c b/drivers/staging/unisys/visorchipset/visorchipset_main.c index f606ee9..848afaa 100644

Re: [PATCH 3/4] staging: unisys: style: Replace typedefs with structs in visorchipset_main.c

2015-02-17 Thread Frederico Cadete
On Mon, Feb 16, 2015 at 12:15:02PM +0300, Dan Carpenter wrote: > On Mon, Feb 16, 2015 at 01:39:46AM +0100, Frederico Cadete wrote: > > Signed-off-by: Frederico Cadete > > --- > > .../staging/unisys/visorchipset/visorchipset_main.c | 20 > > ++---

[PATCH 1/4] staging: unisys: declare visorchipset_ioctl static

2015-02-15 Thread Frederico Cadete
This symbol is not exported nor referenced anywhere else in the kernel. Signed-off-by: Frederico Cadete --- drivers/staging/unisys/visorchipset/file.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/staging/unisys/visorchipset/file.c b/drivers/staging/unisys

[PATCH 4/4] staging: unisys: style: remove unnecessary braces

2015-02-15 Thread Frederico Cadete
Signed-off-by: Frederico Cadete --- drivers/staging/unisys/visorchannel/visorchannel_funcs.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/drivers/staging/unisys/visorchannel/visorchannel_funcs.c b/drivers/staging/unisys/visorchannel/visorchannel_funcs.c index

[PATCH 3/4] staging: unisys: style: Replace typedefs with structs in visorchipset_main.c

2015-02-15 Thread Frederico Cadete
Signed-off-by: Frederico Cadete --- .../staging/unisys/visorchipset/visorchipset_main.c | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/drivers/staging/unisys/visorchipset/visorchipset_main.c b/drivers/staging/unisys/visorchipset/visorchipset_main.c

[PATCH 2/4] staging: unisys: remove unused MESSAGE_ENVELOPE typedef

2015-02-15 Thread Frederico Cadete
Signed-off-by: Frederico Cadete --- drivers/staging/unisys/visorchipset/visorchipset_main.c | 5 - 1 file changed, 5 deletions(-) diff --git a/drivers/staging/unisys/visorchipset/visorchipset_main.c b/drivers/staging/unisys/visorchipset/visorchipset_main.c index f606ee9..848afaa 100644

[PATCH 0/4 linux-next] staging: unisys: a few checkpatch fixes

2015-02-15 Thread Frederico Cadete
Here are a few fixes of style warnings detected by checkpatch.pl in drivers/staging/unisys. Patches were generated on top of linux-next 20150213; let me know if a rebase on top of another tag is preferred. Frederico Cadete (4): staging: unisys: declare visorchipset_ioctl static staging