RE: [PANIC, hyperv] BUG: unable to handle kernel paging request at ffff880077800004 (hv_ringbuffer_write)

2014-08-27 Thread KY Srinivasan
> -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

RE: [PANIC, hyperv] BUG: unable to handle kernel paging request at ffff880077800004 (hv_ringbuffer_write)

2014-08-27 Thread Dexuan Cui
> -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 > > >

Re: Fwd: Re: [PATCH] staging:lustre:lnet: lib-md.c fix checkpath warnings and errors.

2014-08-27 Thread Janet Liu
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

[PATCH] vme: remove redundant else condition

2014-08-27 Thread Fred Chou
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

RE: [PANIC, hyperv] BUG: unable to handle kernel paging request at ffff880077800004 (hv_ringbuffer_write)

2014-08-27 Thread KY Srinivasan
> -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

Re: [PANIC, hyperv] BUG: unable to handle kernel paging request at ffff880077800004 (hv_ringbuffer_write)

2014-08-27 Thread Sitsofe Wheeler
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

[PATCH V2 2/5] Drivers: hv: vmbus: Cleanup vmbus_teardown_gpadl()

2014-08-27 Thread K. Y. Srinivasan
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

[PATCH V2 0/5] Drivers: hv: vmbus: Eliminate calls to BUG_ON()

2014-08-27 Thread K. Y. Srinivasan
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

[PATCH V3 3/5] Drivers: hv: vmbus: Cleanup vmbus_close_internal()

2014-08-27 Thread K. Y. Srinivasan
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

[PATCH V2 4/5] Drivers: hv: vmbus: Cleanup vmbus_establish_gpadl()

2014-08-27 Thread K. Y. Srinivasan
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

[PATCH V2 5/5] Drivers: hv: vmbus: Fix a bug in vmbus_open()

2014-08-27 Thread K. Y. Srinivasan
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

[PATCH V2 1/5] Drivers: hv: vmbus: Cleanup vmbus_post_msg()

2014-08-27 Thread K. Y. Srinivasan
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.

[PATCH] staging: lustre: lmv: expand the GOTO macro

2014-08-27 Thread Julia Lawall
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

[PATCH v2] staging: comedi: Kconfig: make COMEDI_BOND select COMEDI_KCOMEDILIB

2014-08-27 Thread Ian Abbott
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

Re: [PATCH] staging: comedi: Kconfig: make COMEDI_BOND select COMEDI_KCOMEDILIB

2014-08-27 Thread Randy Dunlap
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.

[PATCH] staging: comedi: Kconfig: make COMEDI_BOND select COMEDI_KCOMEDILIB

2014-08-27 Thread Ian Abbott
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

RE: [PANIC, hyperv] BUG: unable to handle kernel paging request at ffff880077800004 (hv_ringbuffer_write)

2014-08-27 Thread KY Srinivasan
> -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

RE: [PATCH 61/62] staging: comedi: me4000: remove sanity checks in me4000_ao_insn_write()

2014-08-27 Thread Hartley Sweeten
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

Re: [PATCH 61/62] staging: comedi: me4000: remove sanity checks in me4000_ao_insn_write()

2014-08-27 Thread Ian Abbott
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

RE: [PATCH 61/62] staging: comedi: me4000: remove sanity checks in me4000_ao_insn_write()

2014-08-27 Thread Hartley Sweeten
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

Re: [PATCH 00/62] staging: comedi: cleanup analog output 'readback'

2014-08-27 Thread Ian Abbott
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

Re: [PATCH 61/62] staging: comedi: me4000: remove sanity checks in me4000_ao_insn_write()

2014-08-27 Thread Ian Abbott
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 ++

Re: [PANIC, hyperv] BUG: unable to handle kernel paging request at ffff880077800004 (hv_ringbuffer_write)

2014-08-27 Thread Sitsofe Wheeler
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

Re: [PATCH 00/19] staging: comedi: fix some coverity scan issues

2014-08-27 Thread Ian Abbott
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)

Re: [PATCH v3 0/7] staging: comedi: cleanup PCI driver detach

2014-08-27 Thread Ian Abbott
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

Re: [PATCH 2/2] Drivers: scsi: storvsc: Force discovery of LUNs that may have been removed.

2014-08-27 Thread Hannes Reinecke
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

RE: [PANIC, hyperv] BUG: unable to handle kernel paging request at ffff880077800004 (hv_ringbuffer_write)

2014-08-27 Thread Dexuan Cui
> -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

Re: [PANIC, hyperv] BUG: unable to handle kernel paging request at ffff880077800004 (hv_ringbuffer_write)

2014-08-27 Thread Sitsofe Wheeler
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

[PATCH 02/57] Staging: bcm: CmHost.c: Renamed variable: "pstClassifierEntry" -> "classifier_entry"

2014-08-27 Thread Matthias Beyer
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

RE: [PANIC, hyperv] BUG: unable to handle kernel paging request at ffff880077800004 (hv_ringbuffer_write)

2014-08-27 Thread Dexuan Cui
> -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

[PATCH 30/38] Staging: bcm: Bcmchar.c: Renamed variable: "sCopySectStrut" -> "copy_sect_strut"

2014-08-27 Thread Matthias Beyer
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

[PATCH 00/57] drivers/staging/bcm/CmHost.c variable rename patchset

2014-08-27 Thread Matthias Beyer
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

[PATCH 01/57] Staging: bcm: CmHost.c: Renamed variable: "Adapter" -> "ad"

2014-08-27 Thread Matthias Beyer
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

[PATCH 53/57] Staging: bcm: CmHost.c: Renamed variable: "stSrc" -> "src"

2014-08-27 Thread Matthias Beyer
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

[PATCH 34/57] Staging: bcm: CmHost.c: Renamed variable: "pvBuffer" -> "buffer"

2014-08-27 Thread Matthias Beyer
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 +++

[PATCH 07/57] Staging: bcm: CmHost.c: Renamed variable: "sPhsRule" -> "phs_rule"

2014-08-27 Thread Matthias Beyer
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

[PATCH 10/57] Staging: bcm: CmHost.c: Renamed variable: "uiSfid" -> "sf_id"

2014-08-27 Thread Matthias Beyer
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

[PATCH 24/57] Staging: bcm: CmHost.c: Renamed variable: "usVCID" -> "vcid"

2014-08-27 Thread Matthias Beyer
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.

[PATCH 08/57] Staging: bcm: CmHost.c: Renamed variable: "cPhsRule" -> "c_phs_rules"

2014-08-27 Thread Matthias Beyer
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

[PATCH 38/57] Staging: bcm: CmHost.c: Renamed variable: "pucSrcBuffer" -> "src_buff"

2014-08-27 Thread Matthias Beyer
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

[PATCH 29/57] Staging: bcm: CmHost.c: Renamed variable: "eClassifierAction" -> "classifier_action"

2014-08-27 Thread Matthias Beyer
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/

[PATCH 12/57] Staging: bcm: CmHost.c: Renamed variable: "uiClassifierID" -> "classifier_id"

2014-08-27 Thread Matthias Beyer
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

[PATCH 09/57] Staging: bcm: CmHost.c: Renamed variable: "pstAddIndication" -> "add_indication"

2014-08-27 Thread Matthias Beyer
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

[PATCH 40/57] Staging: bcm: CmHost.c: Renamed variable: "puBufferLength" -> "buff_len"

2014-08-27 Thread Matthias Beyer
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

[PATCH 44/57] Staging: bcm: CmHost.c: Renamed variable: "pstAddIndicationDest" -> "add_indication_dest"

2014-08-27 Thread Matthias Beyer
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

[PATCH 47/57] Staging: bcm: CmHost.c: Renamed variable: "Status" -> "status"

2014-08-27 Thread Matthias Beyer
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

[PATCH 56/57] Staging: bcm: CmHost.c: Renamed variable: "pLeader" -> "leader"

2014-08-27 Thread Matthias Beyer
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

[PATCH 17/57] Staging: bcm: CmHost.c: Renamed variable: "ptrClassifierIpAddress" -> "classifier_ip_addr"

2014-08-27 Thread Matthias Beyer
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

[PATCH 41/57] Staging: bcm: CmHost.c: Renamed variable: "pstAddIndicationAlt" -> "add_indication_alt"

2014-08-27 Thread Matthias Beyer
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

[PATCH 48/57] Staging: bcm: CmHost.c: Renamed variable: "uiSFId" -> "sf_id"

2014-08-27 Thread Matthias Beyer
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.

[PATCH 42/57] Staging: bcm: CmHost.c: Renamed variable: "pstDeletionRequest" -> "del_request"

2014-08-27 Thread Matthias Beyer
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

[PATCH 37/57] Staging: bcm: CmHost.c: Renamed variable: "nBytesToRead" -> "bytes_to_read"

2014-08-27 Thread Matthias Beyer
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 @@

[PATCH 22/57] Staging: bcm: CmHost.c: Renamed variable: "nClassifierIndex" -> "classifier_idx"

2014-08-27 Thread Matthias Beyer
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.

[PATCH 28/57] Staging: bcm: CmHost.c: Renamed variable: "ucDsxType" -> "dsx_type"

2014-08-27 Thread Matthias Beyer
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.

[PATCH 50/57] Staging: bcm: CmHost.c: Renamed variable: "puiBuffer" -> "buff"

2014-08-27 Thread Matthias Beyer
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

[PATCH 32/57] Staging: bcm: CmHost.c: Renamed variable: "nIndex" -> "n"

2014-08-27 Thread Matthias Beyer
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/

[PATCH 05/57] Staging: bcm: CmHost.c: Renamed variable: "uiSearchRuleIndex" -> "search_rule_idx"

2014-08-27 Thread Matthias Beyer
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

[PATCH 06/57] Staging: bcm: CmHost.c: Renamed variable: "uVCID" -> "vcid"

2014-08-27 Thread Matthias Beyer
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/

[PATCH 51/57] Staging: bcm: CmHost.c: Renamed variable: "u32NumofSFsinMsg" -> "n_sf_sin_msg"

2014-08-27 Thread Matthias Beyer
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.

[PATCH 26/57] Staging: bcm: CmHost.c: Renamed variable: "ulPhsStatus" -> "phs_status"

2014-08-27 Thread Matthias Beyer
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

[PATCH 15/57] Staging: bcm: CmHost.c: Renamed variable: "bIpVersion6" -> "ip_v6"

2014-08-27 Thread Matthias Beyer
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

[PATCH 30/57] Staging: bcm: CmHost.c: Renamed variable: "UGIValue" -> "gi_value"

2014-08-27 Thread Matthias Beyer
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

[PATCH 13/57] Staging: bcm: CmHost.c: Renamed variable: "u8IpAddressLen" -> "ip_addr_len"

2014-08-27 Thread Matthias Beyer
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

[PATCH 23/57] Staging: bcm: CmHost.c: Renamed variable: "u16PacketClassificationRuleIndex" -> "packet_classification_rule_idx"

2014-08-27 Thread Matthias Beyer
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

[PATCH 54/57] Staging: bcm: CmHost.c: Renamed variable: "stDest" -> "dest"

2014-08-27 Thread Matthias Beyer
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

[PATCH 14/57] Staging: bcm: CmHost.c: Renamed variable: "pu8IpAddressMaskSrc" -> "ip_addr_mask_src"

2014-08-27 Thread Matthias Beyer
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

[PATCH 25/57] Staging: bcm: CmHost.c: Renamed variable: "pvPHsContext" -> "phs_context"

2014-08-27 Thread Matthias Beyer
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

[PATCH 49/57] Staging: bcm: CmHost.c: Renamed variable: "psSfInfo" -> "sf_info"

2014-08-27 Thread Matthias Beyer
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.

[PATCH 39/57] Staging: bcm: CmHost.c: Renamed variable: "nBytesToWrite" -> "bytes_to_write"

2014-08-27 Thread Matthias Beyer
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 @@

[PATCH 33/57] Staging: bcm: CmHost.c: Renamed variable: "nCurClassifierCnt" -> "curr_classifier_cnt"

2014-08-27 Thread Matthias Beyer
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

[PATCH 31/57] Staging: bcm: CmHost.c: Renamed variable: "uiLoopIndex" -> "i"

2014-08-27 Thread Matthias Beyer
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/

[PATCH 43/57] Staging: bcm: CmHost.c: Renamed variable: "ulStatus" -> "status"

2014-08-27 Thread Matthias Beyer
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/

[PATCH 11/57] Staging: bcm: CmHost.c: Renamed variable: "ulSFID" -> "sf_id"

2014-08-27 Thread Matthias Beyer
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 ++

[PATCH 36/57] Staging: bcm: CmHost.c: Renamed variable: "pucDestBuffer" -> "dest_buff"

2014-08-27 Thread Matthias Beyer
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

[PATCH 52/57] Staging: bcm: CmHost.c: Renamed variable: "pHostInfo" -> "host_info"

2014-08-27 Thread Matthias Beyer
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/

[PATCH 04/57] Staging: bcm: CmHost.c: Renamed variable: "eIpAddrContext" -> "ip_addr_context"

2014-08-27 Thread Matthias Beyer
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/

[PATCH 18/57] Staging: bcm: CmHost.c: Renamed variable: "ptrClassifierIpMask" -> "classifier_ip_mask"

2014-08-27 Thread Matthias Beyer
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

[PATCH 20/57] Staging: bcm: CmHost.c: Renamed variable: "TID" -> "tid"

2014-08-27 Thread Matthias Beyer
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

[PATCH 55/57] Staging: bcm: CmHost.c: Renamed variable: "uiClassifierIndex" -> "i"

2014-08-27 Thread Matthias Beyer
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

[PATCH 57/57] Staging: bcm: CmHost: Whitespace cleanup

2014-08-27 Thread Matthias Beyer
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

[PATCH 21/57] Staging: bcm: CmHost.c: Renamed variable: "psfCSType" -> "cs_type"

2014-08-27 Thread Matthias Beyer
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

[PATCH 45/57] Staging: bcm: CmHost.c: Renamed variable: "ulTargetDsxBuffersBase" -> "target_dsx_buffers_base"

2014-08-27 Thread Matthias Beyer
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

[PATCH 46/57] Staging: bcm: CmHost.c: Renamed variable: "ulCntTargetBuffers" -> "n_target_buffs"

2014-08-27 Thread Matthias Beyer
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.

[PATCH 03/57] Staging: bcm: CmHost.c: Renamed function: "restore_endianess_of_pstClassifierEntry" -> "restore_endianess_of_classifier_entry"

2014-08-27 Thread Matthias Beyer
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

[PATCH 16/57] Staging: bcm: CmHost.c: Renamed variable: "nSizeOfIPAddressInBytes" -> "ip_addr_byte_len"

2014-08-27 Thread Matthias Beyer
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 +++

[PATCH 35/57] Staging: bcm: CmHost.c: Renamed variable: "ulAddrSFParamSet" -> "addr_sf_param_set"

2014-08-27 Thread Matthias Beyer
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/

[PATCH 27/57] Staging: bcm: CmHost.c: Renamed variable: "psfLocalSet" -> "local_set"

2014-08-27 Thread Matthias Beyer
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

[PATCH 19/57] Staging: bcm: CmHost.c: Renamed variable: "bFreeAll" -> "free_all"

2014-08-27 Thread Matthias Beyer
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 @@

[PATCH 34/38] Staging: bcm: Bcmchar.c: Renamed variable: "RxCntrlMsgBitMask" -> "rx_cntrl_msg_bit_mask"

2014-08-27 Thread Matthias Beyer
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

[PATCH 38/38] Staging: bcm: Bcmchar.c: Renamed variable: "NOB" -> "nob"

2014-08-27 Thread Matthias Beyer
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

[PATCH 37/38] Staging: bcm: Bcmchar.c: Renamed variable: "pTarang" -> "tarang"

2014-08-27 Thread Matthias Beyer
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

[PATCH 35/38] Staging: bcm: Bcmchar.c: Renamed variable: "DevInfo" -> "dev_info"

2014-08-27 Thread Matthias Beyer
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

[PATCH 36/38] Staging: bcm: Bcmchar.c: Renamed variable: "stTimeElapsedSinceNetEntry" -> "time_elapsed_since_net_entry"

2014-08-27 Thread Matthias Beyer
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

[PATCH 33/38] Staging: bcm: Bcmchar.c: Renamed variable: "ReadOffset" -> "read_offset"

2014-08-27 Thread Matthias Beyer
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

[PATCH 31/38] Staging: bcm: Bcmchar.c: Renamed variable: "SectOfset" -> "sect_offset"

2014-08-27 Thread Matthias Beyer
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

[PATCH 32/38] Staging: bcm: Bcmchar.c: Renamed variable: "stNVMRead" -> "nvm_read"

2014-08-27 Thread Matthias Beyer
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/

[PATCH 18/38] Staging: bcm: Bcmchar.c: Renamed variable: "stNVMReadWrite" -> "nvm_rw"

2014-08-27 Thread Matthias Beyer
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

[PATCH 16/38] Staging: bcm: Bcmchar.c: Renamed variable: "uiSectorSize" -> "sector_size"

2014-08-27 Thread Matthias Beyer
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/

[PATCH 29/38] Staging: bcm: Bcmchar.c: Renamed variable: "eFlash2xSectionVal" -> "flash_2x_section_val"

2014-08-27 Thread Matthias Beyer
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/

[PATCH 17/38] Staging: bcm: Bcmchar.c: Renamed variable: "sUserDebugState" -> "user_debug_state"

2014-08-27 Thread Matthias Beyer
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   2   >