[PATCH v2 2/3] STAGING: COMEDI: Added spaces around binary operators in plx9080.h

2015-12-17 Thread Moritz König
This patch adds spaces around binary operators in plx9080.h. Signed-off-by: Moritz König <moritz.koe...@fau.de> Signed-off-by: Fabian Lang <fabian.l...@fau.de> Reviewed-by: Ian Abbott <abbo...@mev.co.uk> --- drivers/staging/comedi/drivers/plx9080.h | 2 +- 1 file changed,

[PATCH v2 1/3] STAGING: COMEDI: Fixed format of comments in plx9080.h

2015-12-17 Thread Moritz König
This patch fixes the format of comments in plx9080.h. Signed-off-by: Moritz König <moritz.koe...@fau.de> Signed-off-by: Fabian Lang <fabian.l...@fau.de> --- Changes since v1: * moving comments that would wrap over 80 columns onto the previous line * using the usual block c

[PATCH v2 3/3] STAGING: COMEDI: Using kernel types in plx9080.h

2015-12-17 Thread Moritz König
This patch makes plx9080.h use kernel types. Signed-off-by: Moritz König <moritz.koe...@fau.de> Signed-off-by: Fabian Lang <fabian.l...@fau.de> Reviewed-by: Ian Abbott <abbo...@mev.co.uk> Acked-by: Moritz Fischer <moritz.fisc...@ettus.com> --- drivers/staging/comedi/dri

[PATCH v2 0/3] STAGING: COMEDI: checkpatch.pl cleanups in plx9080.h

2015-12-17 Thread Moritz König
checks were fixed: * CHECK: spaces preferred around that '-' (ctx:VxV) * CHECK: Prefer kernel type 'u8' over 'uint8_t' The following checks were not fixed: * CHECK: Avoid CamelCase: PCI version 21 seems to make sense --- Changes since v1: * Improved format of comments in patch 1 Moritz

[PATCH 3/3] STAGING: COMEDI: Using kernel types in plx9080.h

2015-12-12 Thread Moritz König
This patch makes plx9080.h use kernel types. Signed-off-by: Moritz König <moritz.koe...@fau.de> Signed-off-by: Fabian Lang <fabian.l...@fau.de> --- drivers/staging/comedi/drivers/plx9080.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/comedi/dri

[PATCH 0/3] STAGING: COMEDI: checkpatch.pl cleanups in plx9080.h

2015-12-12 Thread Moritz König
checks were fixed: * CHECK: spaces preferred around that '-' (ctx:VxV) * CHECK: Prefer kernel type 'u8' over 'uint8_t' The following checks were not fixed: * CHECK: Avoid CamelCase: PCI version 21 seems to make sense Moritz König (3): STAGING: COMEDI: Fixed format of comments in plx9080

[PATCH 2/3] STAGING: COMEDI: Added spaces around binary operators in plx9080.h

2015-12-12 Thread Moritz König
This patch adds spaces around binary operators in plx9080.h. Signed-off-by: Moritz König <moritz.koe...@fau.de> Signed-off-by: Fabian Lang <fabian.l...@fau.de> --- drivers/staging/comedi/drivers/plx9080.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/st

[PATCH 2/2] staging: COMEDI: Added missing spaces at binary operators

2015-12-10 Thread Moritz König
This patch adds missing spaces at binary operators in comedi.h. Signed-off-by: Moritz König <moritz.koe...@fau.de> Signed-off-by: Fabian Lang <fabian.l...@fau.de> --- drivers/staging/comedi/comedi.h | 30 +++--- 1 file changed, 15 insertions(+), 15 deleti

[PATCH 1/2] staging: COMEDI: Fixed the format of comments

2015-12-10 Thread Moritz König
This patch fixes the format of comments in comedi.h. Signed-off-by: Moritz König <moritz.koe...@fau.de> Signed-off-by: Fabian Lang <fabian.l...@fau.de> --- drivers/staging/comedi/comedi.h | 202 +++- 1 file changed, 116 insertions(+), 86 deleti

[PATCH 0/2] staging: COMEDI: checkpatch.pl cleanups in comedi.h

2015-12-10 Thread Moritz König
ot a binary operator, but a referencing. * CHECK: Prefer using the BIT macro The author defined a BIT macro here. * CHECK: Avoid CamelCase: This refers to the unit 'milli ampere'. Moritz König (2): staging: COMEDI: Fixed the format of comments staging: COMEDI: Added miss