[PATCH] staging: comedi: comedilib.h: Coding style warning fix for block comments

2015-11-23 Thread Jitendra Kumar Khasdev
This patch is to comedilib.h file that fixes up following warnings reported by checkpatch.pl : I) Block comments use * on subsequent lines Signed-off-by: Jitendra Kumar Khasdev --- drivers/staging/comedi/comedilib.h | 32 1 file changed, 16 insertions(+), 16 dele

Re: Future of Lustre in staging

2015-11-23 Thread Dilger, Andreas
On 2015/11/20, 06:30, "Denis Kirjanov" wrote: >On 11/20/15, Xose Vazquez Perez wrote: >> Hi, >> >> From https://lwn.net/Articles/662979/ >> >> --cut-- >> Christoph complained a bit about the staging tree. He said that it >> breaks allmodconfig builds, but that problem was evidently fixed a while

Re: [PATCH] staging: lustre: ptlrpc: constify ptlrpc_sec_cops structs

2015-11-23 Thread kbuild test robot
Hi Aya, [auto build test WARNING on staging/staging-testing] [also build test WARNING on v4.4-rc2 next-20151123] url: https://github.com/0day-ci/linux/commits/Aya-Mahfouz/staging-lustre-ptlrpc-constify-ptlrpc_sec_cops-structs/20151124-054437 config: tile-allyesconfig (attached as .config

[PATCH net-next 04/10] hv_netvsc: Eliminate rndis_msg pointer from hv_netvsc_packet structure

2015-11-23 Thread K. Y. Srinivasan
Eliminate rndis_msg pointer from hv_netvsc_packet structure. Signed-off-by: K. Y. Srinivasan Reviewed-by: Haiyang Zhang --- drivers/net/hyperv/hyperv_net.h |8 +++- drivers/net/hyperv/netvsc.c | 10 ++ drivers/net/hyperv/netvsc_drv.c |7 +++ drivers/net/hyper

[PATCH net-next 09/10] hv_netvsc: move subchannel existence check to netvsc_select_queue()

2015-11-23 Thread K. Y. Srinivasan
From: Vitaly Kuznetsov Signed-off-by: Vitaly Kuznetsov Signed-off-by: K. Y. Srinivasan --- drivers/net/hyperv/hyperv_net.h | 15 --- drivers/net/hyperv/netvsc.c |5 ++--- drivers/net/hyperv/netvsc_drv.c |3 +++ 3 files changed, 5 insertions(+), 18 deletions(-) diff -

[PATCH net-next 02/10] hv_netvsc: Rearrange the hv_negtvsc_packet to be space efficient

2015-11-23 Thread K. Y. Srinivasan
Rearrange the elements of struct hv_negtvsc_packet for optimal layout - eliminate unnecessary padding. Signed-off-by: K. Y. Srinivasan Reviewed-by: Haiyang Zhang --- drivers/net/hyperv/hyperv_net.h | 18 ++ 1 files changed, 10 insertions(+), 8 deletions(-) diff --git a/driver

[PATCH net-next 08/10] hv_netvsc: Don't ask for additional head room in the skb

2015-11-23 Thread K. Y. Srinivasan
The rndis header is 116 bytes big and can be placed in the default head room that will be available in the skb. Since the netvsc packet is less than 48 bytes, we can use the skb control buffer for the netvsc packet. With these changes we don't need to ask for additional head room. Signed-off-by: K

[PATCH net-next 10/10] hv_netvsc: remove locking in netvsc_send()

2015-11-23 Thread K. Y. Srinivasan
From: Vitaly Kuznetsov Packet scheduler guarantees there won't be multiple senders for the same queue and as we use q_idx for multi_send_data the spinlock is redundant. Signed-off-by: Vitaly Kuznetsov Signed-off-by: K. Y. Srinivasan --- drivers/net/hyperv/hyperv_net.h |1 - drivers/net/hy

[PATCH net-next 05/10] hv_netvsc: Eliminatte the data field from struct hv_netvsc_packet

2015-11-23 Thread K. Y. Srinivasan
Eliminatte the data field from struct hv_netvsc_packet. Signed-off-by: K. Y. Srinivasan Reviewed-by: Haiyang Zhang --- drivers/net/hyperv/hyperv_net.h |5 ++--- drivers/net/hyperv/netvsc.c |5 +++-- drivers/net/hyperv/netvsc_drv.c |3 ++- drivers/net/hyperv/rndis_filter.c

[PATCH net-next 01/10] hv_netvsc: Resize some of the variables in hv_netvsc_packet

2015-11-23 Thread K. Y. Srinivasan
As part of reducing the size of the hv_netvsc_packet, resize some of the variables based on their usage. Signed-off-by: K. Y. Srinivasan Reviewed-by: Haiyang Zhang --- drivers/net/hyperv/hyperv_net.h | 14 +++--- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/drivers/n

[PATCH net-next 03/10] hv_netvsc: Eliminate the channel field in hv_netvsc_packet structure

2015-11-23 Thread K. Y. Srinivasan
Eliminate the channel field in hv_netvsc_packet structure. Signed-off-by: K. Y. Srinivasan Reviewed-by: Haiyang Zhang --- drivers/net/hyperv/hyperv_net.h | 22 ++ drivers/net/hyperv/netvsc.c | 19 --- drivers/net/hyperv/netvsc_drv.c |5 +++--

[PATCH net-next 00/10] hv_netvsc: Eliminate the additional head room

2015-11-23 Thread K. Y. Srinivasan
In an attempt to avoid having to allocate memory on the send path, the netvsc driver was requesting additional head room so that both rndis header and the netvsc packet (the state that had to persist) could be placed in the skb. Since the amount of head room requested was exceeding the default head

[PATCH net-next 06/10] hv_netvsc: Eliminate send_completion from struct hv_netvsc_packet

2015-11-23 Thread K. Y. Srinivasan
Eliminate send_completion from struct hv_netvsc_packet. Signed-off-by: K. Y. Srinivasan Reviewed-by: Haiyang Zhang --- drivers/net/hyperv/hyperv_net.h |3 +-- drivers/net/hyperv/netvsc.c |6 +++--- drivers/net/hyperv/netvsc_drv.c |2 +- drivers/net/hyperv/rndis_filter.c |

[PATCH net-next 07/10] hv_netvsc: Eliminate send_completion_ctx from struct hv_netvsc_packet

2015-11-23 Thread K. Y. Srinivasan
Eliminate send_completion_ctx from struct hv_netvsc_packet. Signed-off-by: K. Y. Srinivasan Reviewed-by: Haiyang Zhang --- drivers/net/hyperv/hyperv_net.h |1 - drivers/net/hyperv/netvsc.c |3 +-- drivers/net/hyperv/netvsc_drv.c |1 - 3 files changed, 1 insertions(+), 4 deletion

[PATCH] staging: lustre: ptlrpc: constify ptlrpc_sec_cops structs

2015-11-23 Thread Aya Mahfouz
Constifies ptlrpc_sec_cops structures in the lustre driver since they are not modified after their initialization. Detected and found using Coccinelle. Suggested-by: Julia Lawall Signed-off-by: Aya Mahfouz --- drivers/staging/lustre/lustre/ptlrpc/sec.c | 2 +- drivers/staging/lustre/lust

Re: [PATCH] staging: comedi: comedilib.h: Coding style warning fix for block comments

2015-11-23 Thread Ian Abbott
On 23/11/15 17:45, Jitendra Kumar Khasdev wrote: This patch is to comedilib.h file that fixes up following warnings reported by checkpatch.pl : I) Block comments use * on subsequent lines Signed-off-by: Jitendra Kumar Khasdev --- drivers/staging/comedi/comedilib.h | 32 ---

Re: [PATCH 2/4] staging: wilc1000: Fix typo in host_interface.c

2015-11-23 Thread Randy Dunlap
On 11/23/15 05:41, Masanari Iida wrote: > This patch fix spelling typo in host_interface.c > > Signed-off-by: Masanari Iida > --- > drivers/staging/wilc1000/host_interface.c | 30 +++--- > 1 file changed, 15 insertions(+), 15 deletions(-) > > diff --git a/drivers/staging

Re: [PATCH 3/4] staging: wilc1000: Fix typo in linux_wlan.c

2015-11-23 Thread Randy Dunlap
On 11/23/15 05:41, Masanari Iida wrote: > This patch fix some spelling typo in wilc1000.c. > > Signed-off-by: Masanari Iida > --- > drivers/staging/wilc1000/linux_wlan.c | 16 > 1 file changed, 8 insertions(+), 8 deletions(-) > Acked-by: Randy Dunlap Thanks. -- ~Randy ___

Re: [PATCH 1/4] staging: wilc1000: Fix typo in wilc_msgqueue.h

2015-11-23 Thread Randy Dunlap
On 11/23/15 05:41, Masanari Iida wrote: > This patch fix some spelling typo in wilc_msgqueue.h > > Signed-off-by: Masanari Iida Acked-by: Randy Dunlap Thanks. > --- > drivers/staging/wilc1000/wilc_msgqueue.h | 12 ++-- > 1 file changed, 6 insertions(+), 6 deletions(-) > > diff --git

Re: [PATCH 4/4] staging: wilc1000: Fix typo in wilc_wfi_cfgoperations.c

2015-11-23 Thread Randy Dunlap
On 11/23/15 05:41, Masanari Iida wrote: > This patch fix some spelling typo in wilc_wfi_cfgoperations.c > > Signed-off-by: Masanari Iida > --- > drivers/staging/wilc1000/wilc_wfi_cfgoperations.c | 34 > +++ > 1 file changed, 17 insertions(+), 17 deletions(-) > > diff --git

[PATCH] Staging: iio: frequency: use dev_get_platdata()

2015-11-23 Thread Nizam Haider
Use the wrapper function for retrieving the platform data instead of accessing dev->platform_data directly. Signed-off-by: Nizam Haider --- drivers/staging/iio/frequency/ad9832.c | 2 +- drivers/staging/iio/frequency/ad9834.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a

[PATCH] Staging: iio: light: tsl2x7x_core: use dev_get_platdata()

2015-11-23 Thread Nizam Haider
Use the wrapper function for retrieving the platform data instead of accessing dev->platform_data directly. Signed-off-by: Nizam Haider --- drivers/staging/iio/light/tsl2x7x_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/iio/light/tsl2x7x_core.c b/dri

[PATCH] staging: comedi: comedilib.h: Coding style warning fix for block comments

2015-11-23 Thread Jitendra Kumar Khasdev
This patch is to comedilib.h file that fixes up following warnings reported by checkpatch.pl : I) Block comments use * on subsequent lines Signed-off-by: Jitendra Kumar Khasdev --- drivers/staging/comedi/comedilib.h | 32 1 file changed, 16 insertions(+), 16 dele

[PATCH] Staging: iio: adc: use dev_get_platdata()

2015-11-23 Thread Nizam Haider
Use the wrapper function for retrieving the platform data instead of accessing dev->platform_data directly. Signed-off-by: Nizam Haider --- drivers/staging/iio/adc/ad7192.c | 2 +- drivers/staging/iio/adc/ad7280a.c | 2 +- drivers/staging/iio/adc/ad7780.c | 2 +- drivers/staging/iio/adc/ad7816

[PATCH 3/3] Drivers: hv: ring_buffer: remove code duplication from hv_ringbuffer_peek/read()

2015-11-23 Thread Vitaly Kuznetsov
hv_ringbuffer_peek() does the same as hv_ringbuffer_read() without advancing the read index. The only functional change this patch brings is moving hv_need_to_signal_on_read() call under the ring_lock but this function is just a couple of comparisons. Signed-off-by: Vitaly Kuznetsov --- drivers/

[PATCH 2/3] Drivers: hv: ring_buffer: remove stray smp_read_barrier_depends()

2015-11-23 Thread Vitaly Kuznetsov
smp_read_barrier_depends() does nothing on almost all arcitectures including x86 and having it in the beginning of hv_get_ringbuffer_availbytes() does not provide any guarantees anyway. Signed-off-by: Vitaly Kuznetsov --- include/linux/hyperv.h | 2 -- 1 file changed, 2 deletions(-) diff --git

[PATCH 0/3] Drivers: hv: ring_buffer: do some code cleanup

2015-11-23 Thread Vitaly Kuznetsov
1) Fix comment style in ring_buffer.c 2) Remove unneeded smp_read_barrier_depends() from hyperv.h 3) Unify hv_ringbuffer_peek/read() functions. Vitaly Kuznetsov (3): Drivers: hv: ring_buffer.c: fix comment style Drivers: hv: ring_buffer: remove stray smp_read_barrier_depends() Drivers: hv: r

[PATCH 1/3] Drivers: hv: ring_buffer.c: fix comment style

2015-11-23 Thread Vitaly Kuznetsov
Convert 6+-string comments repeating function names to normal kernel-style comments and fix a couple of other comment style issues. No textual or functional changes intended. Signed-off-by: Vitaly Kuznetsov --- drivers/hv/ring_buffer.c | 135 +-- 1 fil

Your First Payment Of $12,000 From UBA Moneygram!

2015-11-23 Thread Mr. Nzue Kenneth
Greetings, I am Mr. Nzue Kenneth, I have tried reaching you on mail all this while, but you fail to respond back to me, please be aware that your matter came to my desk which were dated since on the 29-04-2015 (6) months ago, with the total fund of $2,250,000.00. Frankly speaking you are very l

Re: [Intel-gfx] [RFC 02/12] staging/android/sync: add sync_fence_create_dma

2015-11-23 Thread Maarten Lankhorst
Op 23-11-15 om 14:44 schreef Tvrtko Ursulin: > > On 23/11/15 13:38, John Harrison wrote: >> On 23/11/2015 13:27, Maarten Lankhorst wrote: >>> Op 23-11-15 om 12:34 schreef john.c.harri...@intel.com: From: Maarten Lankhorst This allows users of dma fences to create a android fence. >>

Re: [Intel-gfx] [RFC 02/12] staging/android/sync: add sync_fence_create_dma

2015-11-23 Thread Tvrtko Ursulin
On 23/11/15 13:38, John Harrison wrote: On 23/11/2015 13:27, Maarten Lankhorst wrote: Op 23-11-15 om 12:34 schreef john.c.harri...@intel.com: From: Maarten Lankhorst This allows users of dma fences to create a android fence. v2: Added kerneldoc. (Tvrtko Ursulin). Signed-off-by: Maarten Lan

[PATCH 4/4] staging: wilc1000: Fix typo in wilc_wfi_cfgoperations.c

2015-11-23 Thread Masanari Iida
This patch fix some spelling typo in wilc_wfi_cfgoperations.c Signed-off-by: Masanari Iida --- drivers/staging/wilc1000/wilc_wfi_cfgoperations.c | 34 +++ 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c b/driv

[PATCH 2/4] staging: wilc1000: Fix typo in host_interface.c

2015-11-23 Thread Masanari Iida
This patch fix spelling typo in host_interface.c Signed-off-by: Masanari Iida --- drivers/staging/wilc1000/host_interface.c | 30 +++--- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/h

[PATCH 1/4] staging: wilc1000: Fix typo in wilc_msgqueue.h

2015-11-23 Thread Masanari Iida
This patch fix some spelling typo in wilc_msgqueue.h Signed-off-by: Masanari Iida --- drivers/staging/wilc1000/wilc_msgqueue.h | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/staging/wilc1000/wilc_msgqueue.h b/drivers/staging/wilc1000/wilc_msgqueue.h ind

[PATCH 3/4] staging: wilc1000: Fix typo in linux_wlan.c

2015-11-23 Thread Masanari Iida
This patch fix some spelling typo in wilc1000.c. Signed-off-by: Masanari Iida --- drivers/staging/wilc1000/linux_wlan.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/drivers/staging/wilc1000/linux_wlan.c b/drivers/staging/wilc1000/linux_wlan.c index 086f1d

Re: [RFC 02/12] staging/android/sync: add sync_fence_create_dma

2015-11-23 Thread John Harrison
On 23/11/2015 13:27, Maarten Lankhorst wrote: Op 23-11-15 om 12:34 schreef john.c.harri...@intel.com: From: Maarten Lankhorst This allows users of dma fences to create a android fence. v2: Added kerneldoc. (Tvrtko Ursulin). Signed-off-by: Maarten Lankhorst Signed-off-by: Tvrtko Ursulin Cc:

Re: [Intel-gfx] [RFC 01/12] staging/android/sync: Support sync points created from dma-fences

2015-11-23 Thread Tvrtko Ursulin
Hi, On 23/11/15 11:34, john.c.harri...@intel.com wrote: From: Tvrtko Ursulin This is actually Maarten's patch, I guess authorship got lost over time moving through different trees. Tvrtko Debug output assumes all sync points are built on top of Android sync points and when we start crea

Re: [RFC 01/12] staging/android/sync: Support sync points created from dma-fences

2015-11-23 Thread Maarten Lankhorst
Op 23-11-15 om 12:34 schreef john.c.harri...@intel.com: > From: Tvrtko Ursulin > > Debug output assumes all sync points are built on top of Android sync points > and when we start creating them from dma-fences will NULL ptr deref unless > taught about this. > > Signed-off-by: Tvrtko Ursulin > Cc:

Re: [RFC 02/12] staging/android/sync: add sync_fence_create_dma

2015-11-23 Thread Maarten Lankhorst
Op 23-11-15 om 12:34 schreef john.c.harri...@intel.com: > From: Maarten Lankhorst > > This allows users of dma fences to create a android fence. > > v2: Added kerneldoc. (Tvrtko Ursulin). > > Signed-off-by: Maarten Lankhorst > Signed-off-by: Tvrtko Ursulin > Cc: Maarten Lankhorst > Cc: Daniel V

[PATCH] staging: wlan-ng: (coding style) remove unnecessary blank line before "}"

2015-11-23 Thread Christian Colic
Fix checkpatch checks: "Blank lines aren't necessary before a close brace '}' " Remove two unnecessary blank lines. Signed-off-by: Christian Colic --- drivers/staging/wlan-ng/cfg80211.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/staging/wlan-ng/cfg80211.c b/drivers/staging/w

[RFC 01/12] staging/android/sync: Support sync points created from dma-fences

2015-11-23 Thread John . C . Harrison
From: Tvrtko Ursulin Debug output assumes all sync points are built on top of Android sync points and when we start creating them from dma-fences will NULL ptr deref unless taught about this. Signed-off-by: Tvrtko Ursulin Cc: Maarten Lankhorst Cc: de...@driverdev.osuosl.org Cc: Riley Andrews

[RFC 02/12] staging/android/sync: add sync_fence_create_dma

2015-11-23 Thread John . C . Harrison
From: Maarten Lankhorst This allows users of dma fences to create a android fence. v2: Added kerneldoc. (Tvrtko Ursulin). Signed-off-by: Maarten Lankhorst Signed-off-by: Tvrtko Ursulin Cc: Maarten Lankhorst Cc: Daniel Vetter Cc: Jesse Barnes Cc: de...@driverdev.osuosl.org Cc: Riley Andrews

Re: [PATCH] staging: comedi: Coding style warning fix for block comments

2015-11-23 Thread Ian Abbott
On 22/11/15 19:19, Jitendra Kumar Khasdev wrote: This patch is to comedilib.h file that fixes up following warnings reported by checkpatch.pl : I) Block comments use * on subsequent lines Signed-off-by: Jitendra Kumar Khasdev --- drivers/staging/comedi/comedilib.h | 32 ---

Re: [PATCH] staging: comedi: Coding style warning fix for block comments

2015-11-23 Thread Ian Abbott
On 22/11/15 19:24, Andy Shevchenko wrote: On Sun, Nov 22, 2015 at 9:19 PM, Jitendra Kumar Khasdev wrote: This patch is to comedilib.h file that fixes up following warnings reported by checkpatch.pl : I) Block comments use * on subsequent lines Signed-off-by: Jitendra Kumar Khasdev --- drive

[PATCH 05/10] staging: wilc1000: linux_wlan_sdio.c: remove braces

2015-11-23 Thread Glen Lee
This patch fixes checkpatch warning braces{} are not necessary for single statment blocks. Signed-off-by: Glen Lee --- drivers/staging/wilc1000/linux_wlan_sdio.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/staging/wilc1000/linux_wlan_sdio.c b/drivers/staging/wi

[PATCH 07/10] staging: wilc1000: wilc_sdio_cmd52: return linux error value

2015-11-23 Thread Glen Lee
This patch changes return value with linux error value, not 1 or 0. Signed-off-by: Glen Lee --- drivers/staging/wilc1000/linux_wlan_sdio.c | 6 ++-- drivers/staging/wilc1000/wilc_sdio.c | 51 +++--- 2 files changed, 35 insertions(+), 22 deletions(-) diff --git a/d

[PATCH 09/10] staging: wilc1000: linux_wlan_spi.c: add a blank

2015-11-23 Thread Glen Lee
This patch fixes checkpatch warning: missing a blank like after declarations. Signed-off-by: Glen Lee --- drivers/staging/wilc1000/linux_wlan_spi.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/staging/wilc1000/linux_wlan_spi.c b/drivers/staging/wilc1000/linux_wlan_spi.c index 6

[PATCH 03/10] staging: wilc1000: remove unused functions

2015-11-23 Thread Glen Lee
This patch removes unused function pointer hif_sync and hif_clear_int, and removes it's related functions sdio_clear_int, sdio_sync, wilc_spi_clear_int and wilc_spi_sync. Signed-off-by: Glen Lee --- drivers/staging/wilc1000/wilc_sdio.c | 94 drivers/staging/w

[PATCH 10/10] staging: wilc1000: linux_wlan_spi.c: fix NULL comparison style

2015-11-23 Thread Glen Lee
This patch fixes checkpatch CHECK:comparison to NULL could be written "b". Signed-off-by: Glen Lee --- drivers/staging/wilc1000/linux_wlan_spi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/wilc1000/linux_wlan_spi.c b/drivers/staging/wilc1000/linux_wlan_sp

[PATCH 04/10] staging: wilc1000: linux_wlan_sdio.c: fix checkpatch warning line over 80

2015-11-23 Thread Glen Lee
This patch fixes checkpatch warning line over 80 characters. Signed-off-by: Glen Lee --- drivers/staging/wilc1000/linux_wlan_sdio.c | 13 + 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/drivers/staging/wilc1000/linux_wlan_sdio.c b/drivers/staging/wilc1000/linux_wlan_

[PATCH 06/10] staging: wilc1000: wilc_sdio_cmd53: return linux error value

2015-11-23 Thread Glen Lee
This patch changes return value with linux error value, not 1 or 0. Signed-off-by: Glen Lee --- drivers/staging/wilc1000/linux_wlan_sdio.c | 7 ++- drivers/staging/wilc1000/wilc_sdio.c | 26 -- 2 files changed, 18 insertions(+), 15 deletions(-) diff --git a/dr

[PATCH 08/10] staging: wilc1000: linux_wlan_spi.c: remove braces for single statement

2015-11-23 Thread Glen Lee
This patches fixes checkpatch warning: braces {} are not necessary for single statement blocks. Remove some comments also. Signed-off-by: Glen Lee --- drivers/staging/wilc1000/linux_wlan_spi.c | 15 --- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/drivers/staging/wi

[PATCH 02/10] staging: wilc1000: remove wilc_debug_func of hif_init

2015-11-23 Thread Glen Lee
This patch removes wilc_debug_func of hif_init and remove it's related functions as well because it is not used anymore. Signed-off-by: Glen Lee --- drivers/staging/wilc1000/wilc_sdio.c | 2 +- drivers/staging/wilc1000/wilc_spi.c | 2 +- drivers/staging/wilc1000/wilc_wlan.c | 2 +- drivers/stag

[PATCH 01/10] staging: wilc1000: sdio/spi: use device print api instead of custom one

2015-11-23 Thread Glen Lee
This patch use device print api instead of driver defined print. Remove varialbe dPrint as well. String "[wilc sdio]" and "[wilc spi]" are also removed from all the print statment if exist because it shows which device the message is related to. Signed-off-by: Glen Lee --- drivers/staging/wilc10

Re: [PATCH] staging: panel: Fixed line over 80 characters long

2015-11-23 Thread Sudip Mukherjee
On Sat, Nov 21, 2015 at 09:26:32AM +0530, Anjali Menon wrote: > Moved the comments to the next line to remove the warning > detected by the checkpatch.pl. > > WARNING: line over 80 characters > > Signed-off-by: Anjali Menon > --- > drivers/staging/panel/panel.c | 4 +++- > 1 file changed, 3 ins