> -Original Message-
> From: Dexuan Cui
> Sent: Wednesday, August 27, 2014 8:22 PM
> To: KY Srinivasan; Sitsofe Wheeler
> Cc: Greg Kroah-Hartman; Haiyang Zhang; de...@linuxdriverproject.org;
> linux-ker...@vger.kernel.org
> Subject: RE: [PANIC, hyperv] BUG: unable to handle kernel paging
> -Original Message-
> From: linux-kernel-ow...@vger.kernel.org [mailto:linux-kernel-
> ow...@vger.kernel.org] On Behalf Of KY Srinivasan
> Sent: Thursday, August 28, 2014 7:14 AM
> > > > From: Sitsofe Wheeler [mailto:sits...@gmail.com]
> > > > Sent: Wednesday, August 27, 2014 9:19 AM
> > >
On 08/28/2014 10:20 AM, Janet Liu wrote:
Original Message
Subject: Re: [PATCH] staging:lustre:lnet: lib-md.c fix checkpath
warnings and errors.
Date: Tue, 26 Aug 2014 18:22:45 -0700
From: Greg KH
To: Janet Liu
CC: de...@driverdev.osuosl.org, linux-ker...@vger.kernel.org
On
The else condition is redundant after a return. Remove these redundant else
conditions.
Signed-off-by: Fred Chou
---
drivers/staging/vme/devices/vme_pio2_gpio.c | 14 +++---
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/drivers/staging/vme/devices/vme_pio2_gpio.c
b/dr
> -Original Message-
> From: Sitsofe Wheeler [mailto:sits...@gmail.com]
> Sent: Wednesday, August 27, 2014 3:58 PM
> To: KY Srinivasan
> Cc: Dexuan Cui; Greg Kroah-Hartman; Haiyang Zhang;
> de...@linuxdriverproject.org; linux-ker...@vger.kernel.org
> Subject: Re: [PANIC, hyperv] BUG: unab
On Wed, Aug 27, 2014 at 06:45:55PM +, KY Srinivasan wrote:
>
> > -Original Message-
> > From: Sitsofe Wheeler [mailto:sits...@gmail.com]
> > Sent: Wednesday, August 27, 2014 9:19 AM
> >
> > > BTW, with the patch below, hyperv_fb can work now, BUT,
> > > *occasionally*,
> > > storvsc_p
Eliminate calls to BUG_ON() by properly handling errors. In cases where
rollback is possible, we will return the appropriate error to have the
calling code decide how to rollback state. In the case where we are
transferring ownership of the guest physical pages to the host,
we will wait for the hos
Cleanup the channel management code and eliminate calls to BUG_ON().
Also fix an error propagation bug in vmbus_open().
In this version of the patch-set, I have addressed comments from
Dan Carpenter.
K. Y. Srinivasan (5):
Drivers: hv: vmbus: Cleanup vmbus_post_msg()
Drivers: hv: vmbus: Cleanu
Eliminate calls to BUG_ON() in vmbus_close_internal().
We have chosen to potentially leak memory, than crash the guest
in case of failures.
In this version of the patch I have addressed comments from
Dan Carpenter (dan.carpen...@oracle.com).
Signed-off-by: K. Y. Srinivasan
Cc:
---
drivers/hv/c
Eliminate the call to BUG_ON() by waiting for the host to respond. We are
trying to reclaim the ownership of memory that was given to the host and so
we will have to wait until the host responds.
Signed-off-by: K. Y. Srinivasan
Cc:
---
drivers/hv/channel.c |5 +
1 files changed, 1 inser
Fix a bug in vmbus_open() and properly propagate the error. I would
like to thank Dexuan Cui for identifying the
issue.
Signed-off-by: K. Y. Srinivasan
Cc:
---
drivers/hv/channel.c |4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/drivers/hv/channel.c b/drivers/hv/cha
Posting messages to the host can fail because of transient resource
related failures. Correctly deal with these failures and increase the
number of attempts to post the message before giving up.
In this version of the patch, I have normalized the error code to
Linux error code.
Signed-off-by: K.
From: Julia Lawall
The semantic patch that makes this change is as follows:
(http://coccinelle.lip6.fr/)
//
@@
identifier lbl;
identifier rc;
constant c;
@@
- GOTO(lbl,\(rc\|c\));
+ goto lbl;
@@
identifier lbl;
expression rc;
@@
- GOTO(lbl,rc);
+ rc;
+ goto lbl;
//
Signed-off-by: Julia Law
Currently, to select the "comedi_bond" driver, the "kcomedilib" support
has to be selected first. It seems more natural to allow the
"comedi_bond" driver to be selected on its own and to automatically
select the "kcomedilib" module as a result of that. Change the
dependency/select relationship be
On 08/27/14 12:19, Ian Abbott wrote:
> Currently, to select the "comedi_bond" driver, the "kcomedilib" support
> has to be selected first. It seems more natural to allow the
> "comedi_bond" driver to be selected on its own and to automatically
> select the "kcomedilib" module as a result of that.
Currently, to select the "comedi_bond" driver, the "kcomedilib" support
has to be selected first. It seems more natural to allow the
"comedi_bond" driver to be selected on its own and to automatically
select the "kcomedilib" module as a result of that. Change the
dependency/select relationship be
> -Original Message-
> From: Sitsofe Wheeler [mailto:sits...@gmail.com]
> Sent: Wednesday, August 27, 2014 9:19 AM
> To: Dexuan Cui
> Cc: KY Srinivasan; Greg Kroah-Hartman; Haiyang Zhang;
> de...@linuxdriverproject.org; linux-ker...@vger.kernel.org
> Subject: Re: [PANIC, hyperv] BUG: unab
On Wednesday, August 27, 2014 11:07 AM, Ian Abbott wrote:
> On 27/08/14 19:04, Hartley Sweeten wrote:
>> On Wednesday, August 27, 2014 11:00 AM, Ian Abbott wrote:
>>> On 26/08/14 00:04, H Hartley Sweeten wrote:
The comedi core does the sanity checking of the comedi_insn before
calling the
On 27/08/14 19:04, Hartley Sweeten wrote:
On Wednesday, August 27, 2014 11:00 AM, Ian Abbott wrote:
On 26/08/14 00:04, H Hartley Sweeten wrote:
The comedi core does the sanity checking of the comedi_insn before
calling the (*insn_write). Remove the unnecessary checks.
Signed-off-by: H Hartley
On Wednesday, August 27, 2014 11:00 AM, Ian Abbott wrote:
> On 26/08/14 00:04, H Hartley Sweeten wrote:
>> The comedi core does the sanity checking of the comedi_insn before
>> calling the (*insn_write). Remove the unnecessary checks.
>>
>> Signed-off-by: H Hartley Sweeten
>> Cc: Ian Abbott
>> Cc
On 26/08/14 00:03, H Hartley Sweeten wrote:
The hardware for the analog output subdevices is normally write-only. In
order to provide a 'readback' mechanism the last values written to the
analog output channels is cached in the private data of the comedi driver.
This allows the user to do an (*in
On 26/08/14 00:04, H Hartley Sweeten wrote:
The comedi core does the sanity checking of the comedi_insn before
calling the (*insn_write). Remove the unnecessary checks.
Signed-off-by: H Hartley Sweeten
Cc: Ian Abbott
Cc: Greg Kroah-Hartman
---
drivers/staging/comedi/drivers/me4000.c | 33 ++
On Wed, Aug 27, 2014 at 02:14:02PM +, Dexuan Cui wrote:
> > -Original Message-
> > From: Sitsofe Wheeler
> > Sent: Wednesday, August 27, 2014 20:16 PM
>
> > > I'm making a patch for this.
> Please see the end of the mail for the inline patch and try it.
> (the patch hasn't been rebased
On 25/08/14 23:23, H Hartley Sweeten wrote:
This series fixes a number of issues reported by coverity.
H Hartley Sweeten (19):
staging: comedi: usbduxsigma: fix errno (EL2NSYNC) check
staging: comedi: usbduxsigma: fix kcalloc 'size' argument
staging: comedi: usbdux: fix errno (EL2NSYNC)
On 26/08/14 01:55, H Hartley Sweeten wrote:
Introduce a new helper function, comedi_pci_detach(), that can be used
as the (*detach) of a comedi PCI driver to handle the boilerplate code
of the PCI driver detach.
Use the the new helper to remove the boilerplate from most of the comedi
PCI drivers
On 08/19/2014 07:54 PM, Christoph Hellwig wrote:
On Sat, Aug 16, 2014 at 08:09:48PM -0700, K. Y. Srinivasan wrote:
The host asks the guest to scan when a LUN is removed or added.
The only way a guest can identify the removed LUN is when an I/O is
attempted on a removed LUN - the SRB status code
> -Original Message-
> From: Sitsofe Wheeler
> Sent: Wednesday, August 27, 2014 20:16 PM
>
> > do_hypercall() fails due to HV_STATUS_INVALID_ALIGNMENT, if "the
> > specified input or output GPA pointer is not aligned to 8 bytes",
> > or, "the specified input or output parameter lists spans
On Wed, Aug 27, 2014 at 11:30:54AM +, Dexuan Cui wrote:
> > -Original Message-
> > From: Sitsofe Wheeler
> > On Tue, Aug 26, 2014 at 10:30:54AM +, Dexuan Cui wrote:
> >
> > > Actually I found the direct cause of the panic: sometimes
> > > vmbus_post_msg() can return 4 (HV_STATUS_IN
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 152 +--
1 file changed, 76 insertions(+), 76 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 43ce563..a188db7 100644
--- a/drivers/staging/bcm/CmH
> -Original Message-
> From: Sitsofe Wheeler
> On Tue, Aug 26, 2014 at 10:30:54AM +, Dexuan Cui wrote:
>
> > Actually I found the direct cause of the panic: sometimes
> > vmbus_post_msg() can return 4 (HV_STATUS_INVALID_ALIGNMENT), but
> > vmbus_open() doesn't propagate this error to t
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/Bcmchar.c | 38 +++---
1 file changed, 19 insertions(+), 19 deletions(-)
diff --git a/drivers/staging/bcm/Bcmchar.c b/drivers/staging/bcm/Bcmchar.c
index c33e9ef..ed56313 100644
--- a/drivers/staging/bcm/Bcmcha
Hi,
this is my variable rename patchset for the
drivers/staging/bcm/CmHost.c
file.
Note, as always: As I do not have the appropriate hardware, I cannot
test these patches, but I compiled them at least.
Kind regards,
Matthias Beyer
Matthias Beyer (57):
Staging: bcm: CmHost.c: Renamed vari
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 986 +--
1 file changed, 493 insertions(+), 493 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index adca0ce..43ce563 100644
--- a/drivers/staging/bcm/C
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index ac6ae01..989495d 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHost.c
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 34 +-
1 file changed, 17 insertions(+), 17 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index fd89715..92b5a89 100644
--- a/drivers/staging/bcm/CmHost.c
+++
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 70 ++--
1 file changed, 35 insertions(+), 35 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index f6edf3e..87f9978 100644
--- a/drivers/staging/bcm/CmH
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 2ba07c2..2a345da 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHost.c
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 8
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 0986b37..252f0de 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHost.
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 38 +++---
1 file changed, 19 insertions(+), 19 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 87f9978..52260ce 100644
--- a/drivers/staging/bcm/CmHost.c
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index e9e0a3c..328ba4d 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHost.c
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 14 +++---
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 6f8a96e..5627326 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 6ae3601..a180917 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHost.c
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 478 +--
1 file changed, 239 insertions(+), 239 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 52260ce..2ba07c2 100644
--- a/drivers/staging/bcm/C
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 67b770d..ec7366e 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHost.c
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 50 ++--
1 file changed, 25 insertions(+), 25 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 5205662..0209408 100644
--- a/drivers/staging/bcm/CmH
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 4c5850d..dce9c8d 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHost.c
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 26 +-
1 file changed, 13 insertions(+), 13 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 3d72f56..eff1480 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/driver
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 12 ++--
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 1f84d7c..cea877e 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/Cm
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 48 ++--
1 file changed, 24 insertions(+), 24 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index ec7366e..dd20862 100644
--- a/drivers/staging/bcm/CmH
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 8
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index dce9c8d..0f3d2bb 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHost.
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index dd20862..4840f71 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHost.c
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 2838ffa..e9e0a3c 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHost.c
@@
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 40
1 file changed, 20 insertions(+), 20 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index afdf275..102b4ed 100644
--- a/drivers/staging/bcm/CmHost.
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 8
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 13d6344..6f8a96e 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHost.
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 10 +-
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 7fae315..58c70b5 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHo
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 14 +++---
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index f6b8c16..c2ff7a7 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 172 +--
1 file changed, 86 insertions(+), 86 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 1e4af0b..de28a20 100644
--- a/drivers/staging/bcm/CmH
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 18 +-
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index de28a20..f6edf3e 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 8
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 58c70b5..38822fc 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHost.
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 9fd4a4f..e8416dc 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHost.c
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 16
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 714d881..fe4c164 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bc
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 16
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 5627326..fe32beb 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bc
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 20 ++--
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index a180917..e8a5cc4 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/stag
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 26 +-
1 file changed, 13 insertions(+), 13 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 102b4ed..0986b37 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/driver
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 989495d..c93a244 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHost.c
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index e8a5cc4..714d881 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHost.c
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 252f0de..9fd4a4f 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHost.c
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 8
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 0f3d2bb..7fae315 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHost.
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 328ba4d..67b770d 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHost.c
@@
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 26 +-
1 file changed, 13 insertions(+), 13 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index c2ff7a7..fd89715 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/driver
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 32
1 file changed, 16 insertions(+), 16 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index fe32beb..f6b8c16 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 14 +++---
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 4840f71..5205662 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 36 ++--
1 file changed, 18 insertions(+), 18 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 2a345da..6ae3601 100644
--- a/drivers/staging/bcm/CmHost.c
++
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index d27759e..2838ffa 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHost.c
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 24
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 38822fc..ac6ae01 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 24
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index d8796a2..1e4af0b 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 12 ++--
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index cea877e..65cea92 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/Cm
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 7349821..6121cbc 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHost.c
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index c93a244..3d72f56 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHost.c
This patch does some follow-up whitespace cleanup for lines which got
more whitespace with the variable-rename patches.
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 106 +--
1 file changed, 51 insertions(+), 55 deletions(-)
diff --git
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 178 +--
1 file changed, 89 insertions(+), 89 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 6121cbc..afdf275 100644
--- a/drivers/staging/bcm/CmH
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 12 ++--
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 0209408..53538d1 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/Cm
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 8
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 53538d1..4c5850d 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHost.
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index a188db7..d8796a2 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHost.c
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 34 +-
1 file changed, 17 insertions(+), 17 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index fe4c164..1f84d7c 100644
--- a/drivers/staging/bcm/CmHost.c
+++
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 14 +++---
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 92b5a89..d27759e 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 80 ++--
1 file changed, 40 insertions(+), 40 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index e8416dc..13d6344 100644
--- a/drivers/staging/bcm/CmH
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/CmHost.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/bcm/CmHost.c b/drivers/staging/bcm/CmHost.c
index 65cea92..7349821 100644
--- a/drivers/staging/bcm/CmHost.c
+++ b/drivers/staging/bcm/CmHost.c
@@
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/Bcmchar.c | 8
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/bcm/Bcmchar.c b/drivers/staging/bcm/Bcmchar.c
index 3fead74..6b60db8 100644
--- a/drivers/staging/bcm/Bcmchar.c
+++ b/drivers/staging/bcm/Bcm
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/Bcmchar.c | 60 +--
1 file changed, 30 insertions(+), 30 deletions(-)
diff --git a/drivers/staging/bcm/Bcmchar.c b/drivers/staging/bcm/Bcmchar.c
index 6fae4de..1eade1c 100644
--- a/drivers/staging/bcm/B
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/Bcmchar.c | 16
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/drivers/staging/bcm/Bcmchar.c b/drivers/staging/bcm/Bcmchar.c
index a748108..6fae4de 100644
--- a/drivers/staging/bcm/Bcmchar.c
+++ b/drivers/stagin
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/Bcmchar.c | 18 +-
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/drivers/staging/bcm/Bcmchar.c b/drivers/staging/bcm/Bcmchar.c
index 6b60db8..35cfc70 100644
--- a/drivers/staging/bcm/Bcmchar.c
+++ b/drivers/stag
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/Bcmchar.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/bcm/Bcmchar.c b/drivers/staging/bcm/Bcmchar.c
index 35cfc70..a748108 100644
--- a/drivers/staging/bcm/Bcmchar.c
+++ b/drivers/staging/bcm/Bcmch
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/Bcmchar.c | 16
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/drivers/staging/bcm/Bcmchar.c b/drivers/staging/bcm/Bcmchar.c
index 3d384c5..3fead74 100644
--- a/drivers/staging/bcm/Bcmchar.c
+++ b/drivers/stagin
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/Bcmchar.c | 8
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/bcm/Bcmchar.c b/drivers/staging/bcm/Bcmchar.c
index ed56313..5c29327 100644
--- a/drivers/staging/bcm/Bcmchar.c
+++ b/drivers/staging/bcm/Bcm
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/Bcmchar.c | 10 +-
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/staging/bcm/Bcmchar.c b/drivers/staging/bcm/Bcmchar.c
index 5c29327..3d384c5 100644
--- a/drivers/staging/bcm/Bcmchar.c
+++ b/drivers/staging/bcm/
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/Bcmchar.c | 22 +++---
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/drivers/staging/bcm/Bcmchar.c b/drivers/staging/bcm/Bcmchar.c
index 771173f..a588a5f 100644
--- a/drivers/staging/bcm/Bcmchar.c
+++ b/driver
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/Bcmchar.c | 10 +-
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/staging/bcm/Bcmchar.c b/drivers/staging/bcm/Bcmchar.c
index 4e923f6..243933a 100644
--- a/drivers/staging/bcm/Bcmchar.c
+++ b/drivers/staging/bcm/
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/Bcmchar.c | 28 ++--
1 file changed, 14 insertions(+), 14 deletions(-)
diff --git a/drivers/staging/bcm/Bcmchar.c b/drivers/staging/bcm/Bcmchar.c
index f47168b..c33e9ef 100644
--- a/drivers/staging/bcm/Bcmchar.c
+++ b/
Signed-off-by: Matthias Beyer
---
drivers/staging/bcm/Bcmchar.c | 24
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/drivers/staging/bcm/Bcmchar.c b/drivers/staging/bcm/Bcmchar.c
index 243933a..771173f 100644
--- a/drivers/staging/bcm/Bcmchar.c
+++ b/driv
1 - 100 of 134 matches
Mail list logo