[PATCH 2/3] sound/line6: unsigned -> unsigned int

2018-06-18 Thread Roman Sommer
org CC: linux-kernel@vger.kernel.org This patch replaces all occurrences of 'unsigned' in sound/usb/line6 with 'unsigned int'. Signed-off-by: Roman Sommer Signed-off-by: Daniel Graefe --- sound/usb/line6/driver.c | 10 +- sound/usb/line6/driver.h | 8 sound/usb/line6/p

[PATCH 3/3] sound/line6: add newline after declarations

2018-06-18 Thread Roman Sommer
org CC: linux-kernel@vger.kernel.org This patch adds newlines after variable declarations in sound/usb/line6. Signed-off-by: Roman Sommer Signed-off-by: Daniel Graefe --- sound/usb/line6/driver.h | 1 + sound/usb/line6/playback.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/sound/usb/line6/driver

[PATCH 1/3] sound/line6: checkpatch: fix block comment style

2018-06-18 Thread Roman Sommer
org CC: linux-kernel@vger.kernel.org This patch fixed the style of multiline comments in sound/usb/line6. Signed-off-by: Roman Sommer Signed-off-by: Daniel Graefe --- sound/usb/line6/capture.c | 20 - sound/usb/line6/driver.c | 100 ++--- sound/usb/li

[PATCH 0/3] sound/usb/line6: fix some styling issues

2018-06-18 Thread Roman Sommer
org CC: linux-kernel@vger.kernel.org This patchseries addresses some styling issues in sound/usb/line6 found by checkpatch. Roman Sommer (3): sound/line6: checkpatch: fix block comment style sound/line6: unsigned -> unsigned int sound/line6: add newline after declarations sound/usb/line6/capture.c

[PATCH] staging: greybus: fix checkpatch unsigned warnings

2017-01-13 Thread Roman Sommer
Fix checkpatch warnings for parameter type unsigned in greybus. Note that this patch does not fix all checkpatch warnings for the affected files. Signed-off-by: Christian Bewermeyer Signed-off-by: Roman Sommer --- drivers/staging/greybus/gpio.c | 24 drivers

[PATCH v3] staging: greybus: checkpatch: Change parameter type unsigned to unsigned int

2017-01-11 Thread Roman Sommer
Note that this patch does not fix all checkpatch warnings for the affected files. Signed-off-by: Christian Bewermeyer Signed-off-by: Roman Sommer --- drivers/staging/greybus/gpio.c | 24 drivers/staging/greybus/loopback.c | 2 +- 2 files changed, 13 insertions

Re: [PATCH v2] greybus: checkpatch: Change parameter type unsigned to unsigned int

2017-01-11 Thread roman . sommer
>> You forgot to fix the Subject prefix ("staging: greybus: "). >> >> Care to fix that up and resend? >> >> Thanks, >> Johan >> > > As I added the fix for loopback.c, I did not include the "gpio" prefix. > This is what I thought was correct after reading your last mail. > Apparently I misunderstood

Re: [PATCH v2] greybus: checkpatch: Change parameter type unsigned to unsigned int

2017-01-11 Thread roman . sommer
> You forgot to fix the Subject prefix ("staging: greybus: "). > > Care to fix that up and resend? > > Thanks, > Johan > As I added the fix for loopback.c, I did not include the "gpio" prefix. This is what I thought was correct after reading your last mail. Apparently I misunderstood. What should

[PATCH v2] greybus: checkpatch: Change parameter type unsigned to unsigned int

2017-01-11 Thread Roman Sommer
Note that this patch does not fix all checkpatch warnings for the affected files. Signed-off-by: Christian Bewermeyer Signed-off-by: Roman Sommer --- drivers/staging/greybus/gpio.c | 24 drivers/staging/greybus/loopback.c | 2 +- 2 files changed, 13 insertions

Re: [PATCH] greybus: checkpatch: Change parameter type unsigned to unsigned int

2017-01-10 Thread roman . sommer
> Fair enough, but you are fixing all of these new "unsigned int" > warnings in that driver, right? > > How about fixing the sole remaining instance in the loopback driver so > that this is done for the whole subsystem once and for all? Thanks for the hint, I will do that.

[PATCH] greybus: checkpatch: Change parameter type unsigned to unsigned int

2017-01-10 Thread Roman Sommer
From: Christian Bewermeyer Note that this patch does not fix all checkpatch warnings for gpio.c Signed-off-by: Christian Bewermeyer Signed-off-by: Roman Sommer --- drivers/staging/greybus/gpio.c | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a