Re: [PATCH v3 net-next 1/2] net: ethernet: slicoss: add slicoss gigabit ethernet driver

2016-11-26 Thread Lino Sanfilippo
Hi Rami, On 26.11.2016 16:48, Rami Rosen wrote: >> @@ -0,0 +1,28 @@ >> +config NET_VENDOR_ALACRITECH >> +bool "Alacritech devices" >> +default y >> +---help--- >> + If you have a network (Ethernet) card belonging to this class, >> say Y. >> + >> + Note

Re: [PATCH] staging: greybuis: fix permission style warnings

2016-11-26 Thread Bryan O'Donoghue
On Sat, 2016-11-26 at 22:50 +0100, Andrea Ghittino wrote: > Fixes greybus user/groups permission style warnings  > found by checkpatch.pl tool > > Signed-off-by: Andrea Ghittino > --- > diff --git a/drivers/staging/greybus/camera.c > b/drivers/staging/greybus/camera.c > index 1c5b41a..4424f63

[PATCH 21/22] staging/lustre/libcfs: Convert to hotplug state machine

2016-11-26 Thread Sebastian Andrzej Siewior
From: Anna-Maria Gleixner Install the callbacks via the state machine. Cc: Oleg Drokin Cc: Andreas Dilger Cc: James Simmons Cc: Greg Kroah-Hartman Cc:

[PATCH v3] Staging: iio: adc: fix sysfs files modes in ad7192.c

2016-11-26 Thread Boyan Vladinov
Fixes warnings found by checkpatch.pl: - sysfs entries user/group modes to use their octal representation - use the IIO_DEVICE_ATTR_[RO|RW] macroses - coding style Signed-off-by: Boyan Vladinov --- drivers/staging/iio/adc/ad7192.c | 39

[PATCH] staging: greybuis: fix line over 80 characters style warnings

2016-11-26 Thread Andrea Ghittino
Fixes greybus "line over 80 characters" style warnings found by checkpatch.pl tool Signed-off-by: Andrea Ghittino --- diff --git a/drivers/staging/greybus/arche-apb-ctrl.c b/drivers/staging/greybus/arche-apb-ctrl.c index 3fda0cd..755120a 100644 --- a/drivers/staging/greybus/arche-apb-ctrl.c

[PATCH] staging: greybuis: fix permission style warnings

2016-11-26 Thread Andrea Ghittino
Fixes greybus user/groups permission style warnings found by checkpatch.pl tool Signed-off-by: Andrea Ghittino --- diff --git a/drivers/staging/greybus/camera.c b/drivers/staging/greybus/camera.c index 1c5b41a..4424f63 100644 --- a/drivers/staging/greybus/camera.c +++

[PATCH] rtlwifi: Fix enter/exit power_save

2016-11-26 Thread Larry Finger
In commit a5ffbe0a1993 ("rtlwifi: Fix scheduling while atomic bug") and commit a269913c52ad ("rtlwifi: Rework rtl_lps_leave() and rtl_lps_enter() to use work queue"), an error was introduced in the power-save routines due to the fact that leaving PS was delayed by the use of a work queue. This

[PATCH]: Staging: rtl8192e: Block comments use a trailing */ on a separate line

2016-11-26 Thread Rahul Krishnan
This patch fixes the following checkpath.pl warning WARNING: Block comments use a trailing */ on a separate line Signed-off-by: Rahul Krishnan --- drivers/staging/rtl8192e/rtllib.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git

[PATCH v3 net-next 2/2] MAINTAINERS: add entry for slicoss ethernet driver

2016-11-26 Thread Lino Sanfilippo
Add myself as maintainer for the slicoss ethernet driver. Signed-off-by: Lino Sanfilippo --- MAINTAINERS | 5 + 1 file changed, 5 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index 6781a3f..bb9af28 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -562,6 +562,11

[PATCH v3 net-next 1/2] net: ethernet: slicoss: add slicoss gigabit ethernet driver

2016-11-26 Thread Lino Sanfilippo
Add driver for Alacritech gigabit ethernet cards with SLIC (session-layer interface control) technology. The driver provides basic support without SLIC for the following devices: - Mojave cards (single port PCI Gigabit) both copper and fiber - Oasis cards (single and dual port PCI-x Gigabit)

Gigabit ethernet driver for Alacritechs SLIC devices (v3)

2016-11-26 Thread Lino Sanfilippo
Hi, this is the third version of the slicoss gigabit ethernet driver (which is a rework of the driver from Alacritech which can currently be found under drivers/staging/slicoss). The driver is supposed to support Mojave, Oasis and Kalahari cards, for both copper and fiber. If this code is

Re: [PATCH] staging: sm750fb: update license

2016-11-26 Thread Greg Kroah-Hartman
On Sat, Nov 26, 2016 at 09:07:42AM +, Sudip Mukherjee wrote: > The driver was actually released with BSD license. It also gained GPL > when it was submitted to be included in the kernel. > > Cc: Teddy Wang > Cc: gzhou1 >

[PATCH] staging: gdm724x: Remove one blank line in sequence

2016-11-26 Thread Dawid Kurek
Remove one blank line in sequence of two empty lines. Signed-off-by: Dawid Kurek --- drivers/staging/gdm724x/gdm_tty.h | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/staging/gdm724x/gdm_tty.h b/drivers/staging/gdm724x/gdm_tty.h index 297438b..195c590 100644 ---

[PATCH] staging: gdm724x: Align parameters to parenthesis

2016-11-26 Thread Dawid Kurek
Align parameters to open parenthesis. Signed-off-by: Dawid Kurek --- drivers/staging/gdm724x/gdm_lte.h | 14 +++--- drivers/staging/gdm724x/netlink_k.h | 3 ++- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/drivers/staging/gdm724x/gdm_lte.h

[patch] staging: sm750fb: fix a type issue in sm750_set_chip_type()

2016-11-26 Thread Dan Carpenter
"revId" needs to be unsigned because we use it to test: if (revId == SM750LE_REVISION_ID) { and SM750LE_REVISION_ID is ((unsigned char )0xfe). Fixes: 81dee67e215b ("staging: sm750fb: add sm750 to staging") Signed-off-by: Dan Carpenter diff --git

[PATCH] staging: sm750fb: update license

2016-11-26 Thread Sudip Mukherjee
The driver was actually released with BSD license. It also gained GPL when it was submitted to be included in the kernel. Cc: Teddy Wang Cc: gzhou1 Signed-off-by: Sudip Mukherjee ---

Re: [PATCH] staging: gdm724x: Align parameters to parenthesis

2016-11-26 Thread Greg KH
On Fri, Nov 25, 2016 at 09:31:19PM +0100, Dawid Kurek wrote: > Align parameters to open parenthesis. Also remove one blank line in > sequence of two. That's multiple things in the same patch, please break it up into different patches (hint, if you say "Also" or "And" in a changelog comment,