Hi,
I'm wondering why dma_alloc_coherent needs GFP_HIGHUSER | __GFP_ZERO flags in
ion_cma_allocate().
I think dma_alloc_coherent can go to __dma_alloc if the system has CMA area.
If __GFP_WAIT flag is set, it allocates memory from atomic pool.
So I think calling dma_alloc_coherent with __GFP_WAI
This driver was _really_ broken and had to be rewritten. During that rewrite the
async command support was stubbed in but not completed.
This series adds support for basic AI async commands.
H Hartley Sweeten (4):
staging: comedi: das6402: add basic (*do_cmdtest) for AI async commands
staging
Currently the interrupt handler just clears the interrupt.
Add the code necessary to read the analog input samples when running
an async command.
Signed-off-by: H Hartley Sweeten
Cc: Ian Abbott
Cc: Greg Kroah-Hartman
---
drivers/staging/comedi/drivers/das6402.c | 42 ++
Currently the async command support in this driver consists of just the
stubbed in functions.
Flesh out the (*do_cmdtest) function for basic support of timed analog
input acquisitions.
Signed-off-by: H Hartley Sweeten
Cc: Ian Abbott
Cc: Greg Kroah-Hartman
---
drivers/staging/comedi/drivers/da
Flesh out the (*do_cmd) function to support timed analog input
acquisitions.
Signed-off-by: H Hartley Sweeten
Cc: Ian Abbott
Cc: Greg Kroah-Hartman
---
drivers/staging/comedi/drivers/das6402.c | 20 +++-
1 file changed, 19 insertions(+), 1 deletion(-)
diff --git a/drivers/stag
Introduce a helper function to set the analog input acquisition mode.
This will be needed when the (*do_cmd) function is completed to support
async commands.
Signed-off-by: H Hartley Sweeten
Cc: Ian Abbott
Cc: Greg Kroah-Hartman
---
drivers/staging/comedi/drivers/das6402.c | 31 +++
Sorry, for got to respond to a couple comments. See responses below.
On Wed, Nov 12, 2014 at 01:40:21PM -0800, Sean O. Stalley wrote:
> Thanks for reviewing. My responses are inline.
>
> Greg has asked that we clean up this code internally before we
> send out another patchset to the mailing list
> -Original Message-
> From: David Miller [mailto:da...@davemloft.net]
> Sent: Wednesday, November 12, 2014 2:47 PM
> To: Haiyang Zhang
> Cc: net...@vger.kernel.org; KY Srinivasan; o...@aepfle.de;
> jasow...@redhat.com; linux-ker...@vger.kernel.org; driverdev-
> de...@linuxdriverproject.o
On Wed, Nov 12, 2014 at 10:28:41PM +0100, SF Markus Elfring wrote:
> > This is especially true if you have trained yourself to know that
> > free_netdev() can't accept NULL pointers.
>
> Do you need to adjust your concerns a bit over time when function variants
> provide a corresponding safety che
On Wed, Nov 12, 2014 at 10:50:37PM +0100, SF Markus Elfring wrote:
> >> + goto cleanup1;
> >
> > 1) Don't use GW-BASIC label names. Label names should reflect what the
> > label does such as free_fuse_word or free_fuse_tabel.
> >
> > 2) Don't use do-nothing labels. Just return directly
> -Original Message-
> From: David Miller [mailto:da...@davemloft.net]
> Sent: Wednesday, November 12, 2014 3:04 PM
> To: Haiyang Zhang
> Cc: net...@vger.kernel.org; KY Srinivasan; o...@aepfle.de;
> jasow...@redhat.com; linux-ker...@vger.kernel.org; driverdev-
> de...@linuxdriverproject.o
On Wed, 12 Nov 2014, Sean O. Stalley wrote:
> On Tue, Nov 11, 2014 at 10:54:30AM -0500, Alan Stern wrote:
> > On Mon, 10 Nov 2014, Stephanie Wallick wrote:
> >
> > > +static struct mausb_hcd mhcd;
> >
> > Only one statically-allocated structure? What if somebody wants to
> > have more than one
>> +goto cleanup1;
>
> 1) Don't use GW-BASIC label names. Label names should reflect what the
> label does such as free_fuse_word or free_fuse_tabel.
>
> 2) Don't use do-nothing labels. Just return directly.
Does the document "CodingStyle" need any extensions for special cases?
Are
> > This is especially true if you have trained yourself to know that
> > free_netdev() can't accept NULL pointers.
>
> Do you need to adjust your concerns a bit over time when function variants
> provide a corresponding safety check in their implementations?
There would not seem to be any _need_
Thanks for reviewing. My responses are inline.
Greg has asked that we clean up this code internally before we
send out another patchset to the mailing list. I will address
the issues you pointed out, but it may be a while before you see
another patchset.
Thanks Again,
Sean
On Tue, Nov 11, 2014 a
>> @@ -487,8 +488,7 @@ static void rtw_usb_if1_deinit(struct adapter *if1)
>> DBG_88E("+r871xu_dev_remove, hw_init_completed=%d\n",
>> if1->hw_init_completed);
>> rtw_free_drv_sw(if1);
>> -if (pnetdev)
>> -rtw_free_netdev(pnetdev);
>> +rtw_free_netdev(pnet
From: Haiyang Zhang
Date: Wed, 12 Nov 2014 14:07:44 -0800
> If the host uses packet encapsulation feature, the MTU may be reduced by the
> host due to headroom reservation for encapsulation. This patch handles this
> new MTU value.
>
> Signed-off-by: Haiyang Zhang
Applied, thanks for adding th
On Wed, Nov 12, 2014 at 09:25:15PM +0100, SF Markus Elfring wrote:
> @@ -487,8 +488,7 @@ static void rtw_usb_if1_deinit(struct adapter *if1)
> DBG_88E("+r871xu_dev_remove, hw_init_completed=%d\n",
> if1->hw_init_completed);
> rtw_free_drv_sw(if1);
> - if (pnetdev)
> -
On Wed, Nov 12, 2014 at 09:30:43PM +0100, SF Markus Elfring wrote:
> From: Markus Elfring
Please fix your email client instead.
> + goto cleanup1;
1) Don't use GW-BASIC label names. Label names should reflect what the
label does such as free_fuse_word or free_fuse_tabel.
2) Don't
If the host uses packet encapsulation feature, the MTU may be reduced by the
host due to headroom reservation for encapsulation. This patch handles this
new MTU value.
Signed-off-by: Haiyang Zhang
---
drivers/net/hyperv/netvsc.c |3 ++-
drivers/net/hyperv/netvsc_drv.c |5 +++--
d
This whole series is fine and this patch is also fine. But I had some
unrelated comments about the original code in this function.
On Wed, Nov 12, 2014 at 11:28:24AM -0500, Jeffrey Brown wrote:
> Inserted a necessary brace for an if statement on line 146 of
> parser.c
>
> Signed-off-by: Jeffrey
From: Markus Elfring
Date: Wed, 12 Nov 2014 20:40:12 +0100
Memory releases were handled in an inefficient way by the implementation of
the efuse_phymap_to_logical() function in case of an allocation failure.
The corresponding clean-up was improved by reordering of kfree() calls
and a few adjustme
From: Markus Elfring
Date: Wed, 12 Nov 2014 20:25:49 +0100
The functions kfree(), rtw_free_netdev() and vfree() test whether their
argument is NULL and then return immediately. Thus the test around the call
is not needed.
This issue was detected by using the Coccinelle software.
Signed-off-by:
From: Markus Elfring
Date: Wed, 12 Nov 2014 20:42:18 +0100
Another update suggestion was taken into account after patches were applied
from static source code analysis.
Markus Elfring (2):
staging: rtl8188eu: Deletion of unnecessary checks before three
function calls
staging: rtl8188eu:
From: Haiyang Zhang
Date: Wed, 12 Nov 2014 20:02:11 +
> The Hyper-V host doesn't support MTU below 1500. If we try setting MTU to a
> value < 1500, the host will use 1500 automatically and return 1500 in the
> RNDIS_OID_GEN_MAXIMUM_FRAME_SIZE query and guest will also use it. That's
> why
On Wed, 12 Nov 2014, Sean O. Stalley wrote:
> > > --- /dev/null
> > > +++ b/drivers/staging/mausb/drivers/mausb_hub.c
> >
> > > +/**
> > > + * Returns true if the given is the superspeed HCD. Note: The primary
> > > HCD is
> > > + * High Speed and the shared HCD is SuperSpeed.
> > > + */
> >
>
From: Haiyang Zhang
Date: Tue, 11 Nov 2014 15:27:52 -0800
> - if (mtu < 68 || mtu > limit)
> + if (mtu < ETH_DATA_LEN || mtu > limit)
> return -EINVAL;
This is not correct.
The test is against the minimally supported MTU, which should
be 68 not ETH_DATA_LEN which is 1500.
Thank You for reviewing our code.
I believe most of the problems you pointed out in mausb_ioctl.c
were addressed in [V2 PATCH 5/10]. I am working on adding the proper
error checking to the TCP drivers.
Greg has requested that we clean up our code internally before
submitting another patchset to t
Thank you for your review. My responses are inline.
Greg has requested that we clean up the driver internally before
we resubmit another patchset to the mailing list. I will make
sure the changes you requested make it in, but it may be a while
before you see a patchset with the fixes included.
Th
From: Jeffrey
Changed the camel cases in the static void device_responder
cmdId -> cmdid
busNo -> busno
devNo -> devno
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 14 +++---
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/dri
From: Jeffrey
Removed the camel cases from the static BOOL handle_command
parametersAddr -> parametersaddr
parameterBytes -> parametersbytes
isLocalAddr -> islocaladdr
Signed-off-by: Jeffrey Brown
---
.../unisys/visorchipset/visorchipset_main.c| 26 +++---
1 file change
From: Jeffrey
Changed the camel case to parahotplug_request_list_lock
Parahotplug_request_list_lock => parahotplug_request_list_lock
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 16
1 file changed, 8 insertions(+), 8 deletions(-)
From: Jeffrey
Removed the camel cases in the static void of my_device_create
busNo -> busno
devNo -> devno
pDevInfo -> pdevinfo
pBusInfo -> pbusinfo
Away -> cleanups
Signed-off-by: Jeffrey Brown
---
.../unisys/visorchipset/visorchipset_main.c| 86 +++---
1 file changed,
From: Jeffrey
Chagned the camel cases in this static void
busNo -> busno
pBusInfo -> pbusinfo
Away -> cleanups
Signed-off-by: Jeffrey Brown
---
.../unisys/visorchipset/visorchipset_main.c| 48 +++---
1 file changed, 24 insertions(+), 24 deletions(-)
diff --git a/driver
From: Jeffrey
Fixed the camel cases for the static void testUnicode
testUnicode -> testunicode
unicodeString -> unicodestring
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 10 +-
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/
From: Jeffrey
Changed the camel cases in the static_void bus_create
busNo -> busno
pBusInfo -> pbusinfo
Away -> cleanups
Signed-off-by: Jeffrey Brown
---
.../unisys/visorchipset/visorchipset_main.c| 54 +++---
1 file changed, 27 insertions(+), 27 deletions(-)
diff --gi
From: Jeffrey
Changed the camel caes of EfiSparIndication to efisparindication in
the static ssize_ts of boottotool_store and boottotool_show
EfiSparIndication => efisparindication
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 12 ++--
1 fil
From: Jeffrey
Changed the typedef struct MESSAGE ENVELOPE on line 74 to a normal
struct. Also replaced all instances of MESSAGE_ENVELOPE with
"MESSAGE_ENVELOPE"
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 4 ++--
1 file changed, 2 insertions(+),
From: Jeffrey
Changed the camel cases in the static void bus_destroy
busNo -> busno
pBusInfo -> pbusinfo
Away -> cleanups
Signed-off-by: Jeffrey Brown
---
.../unisys/visorchipset/visorchipset_main.c| 22 +++---
1 file changed, 11 insertions(+), 11 deletions(-)
diff --g
From: Jeffrey
Fixed the camel cases in the static void setup_crash_devices_work_
queue
localCrashCreateBusMsg -> localcrashcreatebusmsg
localCrashCreateDevMsg -> localcrashcreatedevmsg
localSavedCrashMsgOffset -> localsavedcrashmsgoffset
localSavedCrashMsgCount -> localsavedcrashmsgcount
Away ->
From: Jeffrey
Changed the camel cases for the static void bus_create_response
busNo => busno
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/unisys/visorchipset/vi
From: Jeffrey
Fixed the camel cases for the static voids: chipset_ready, chipset_
selftest, & chipset_notready
msgHdr -> msghdr
Signed-off-by: Jeffrey Brown
---
.../unisys/visorchipset/visorchipset_main.c| 22 +++---
1 file changed, 11 insertions(+), 11 deletions(-)
di
From: Jeffrey
Fixed all camel cases in the static void bus_epilog
busNo -> busno
msgHdr -> msghdr
needResponse -> needresponse
pBusInfo -> pbusinfo
Signed-off-by: Jeffrey Brown
---
.../unisys/visorchipset/visorchipset_main.c| 32 +++---
1 file changed, 16 insertions(+),
From: Jeffrey
Fixed the camel cases for the static void controlvm_periodic_work
gotAcommand -> gotacommand
chanInfo -> chaninfo
Poll_Count -> poll_count
Away -> cleanups
Signed-off-by: Jeffrey Brown
---
.../unisys/visorchipset/visorchipset_main.c| 30 +++---
1 file chan
From: Jeffrey
Fixed the camel cases in the static void my_device_destroy
busNo -> busno
devNo -> devno
pDevInfo -> pdevinfo
Away -> cleanups
Signed-off-by: Jeffrey Brown
---
.../unisys/visorchipset/visorchipset_main.c| 26 +++---
1 file changed, 13 insertions(+), 13 del
From: Jeffrey
Switched chars* arrays to static const char * const in visorchipset
_main.c
1020: char *envp[] => static const char * const envp[]
1490: char env_selftest => static const char env_selftext
1491: char envp[] => static const char * const envp[]
1645: char env_cmd => static const char
From: Jeffrey
Changed the camel cases in the static void bus_responder
cmdId -> cmdid
busNo -> busno
Signed-off-by: Jeffrey Brown
---
.../staging/unisys/visorchipset/visorchipset_main.c | 20 ++--
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/drivers/staging/
From: Jeffrey
Fixed the camel cases in the static int initialize_controlvm_
payload_info
Away -> cleanups
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 8
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/unisys/
From: Jeffrey
Changed the camel case for Controlvm_channel to controlvm_channel
on line 105
Controlvm_channel => controlvm_channel
Signed-off-by: Jeffrey Brown
---
.../unisys/visorchipset/visorchipset_main.c| 78 +++---
1 file changed, 39 insertions(+), 39 deletions(-)
From: Jeffrey
Changed the camel cases in the static void my_device_changestate
busNo -> busno
devNo -> devno
pDevInfo -> pdevinfo
Away -> cleanups
Signed-off-by: Jeffrey Brown
---
.../unisys/visorchipset/visorchipset_main.c| 30 +++---
1 file changed, 15 insertions(+),
From: Jeffrey
Changed this static const char to putfile_buffer_list_pool_name
Putfile_buffer_list_pool_name => putfile_buffer_list_pool_name
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff
From: Jeffrey
Removed the unnecessasry parentheses around req->list on line 1776
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/unisys/visorchipset/visorchipset_main.c
From: Jeffrey
Changed the static platform_device Visorchipset_platform_device to
visorchipset_platform_device
Visorchipset_platform_device => visorchipset_platform_device
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 16
1 file chan
From: Jeffrey
Changed the camel cases for LIST_HEAD BusInfoList and DevInfoList
BusInfoList => businfolist
DevInfoList => devinfolist
Signed-off-by: Jeffrey Brown
---
.../unisys/visorchipset/visorchipset_main.c| 48 +++---
1 file changed, 24 insertions(+), 24 deletions(
From: Jeffrey
Changed this channel header to test_vnic_channel in
visorchipset_main.c
Test_Vnic_channel => test_vnic_channel
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/
From: Jeffrey
Changed the camel cases for the static void bus_destroy_response
busNo => busno
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/unisys/visorchipset/v
From: Jeffrey
Changed the camel cases in the static void
device_changestate_responders
cmdId -> cmdid
busNo -> busno
devNo -> devno
responseState -> responsestate
Signed-off-by: Jeffrey Brown
---
.../staging/unisys/visorchipset/visorchipset_main.c | 20 ++--
1 file changed, 10
From: Jeffrey
Changed the static struct to busdev_responders
BusDev_Responders => busdev_responders
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/unisys/visorchi
From: Jeffrey
Changed the typedef struct CONTROLVM_PAYLOAD_INFO on line 107 to a
normal struct and replaced every instnace of CONTROLVM_PAYLOAD_INFO
with "struct CONTROLVM_PAYLOAD_INFO"
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 16 --
From: Jeffrey
Changed the typedef LIVEDUMP_INFO to a normal struct and replaced
the only other instance of LIVEDUMP_INFO to "struct LIVEDUMP_INFO"
on line 133
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 7 ---
1 file changed, 4 insertions(+),
From: Jeffrey
Changed the camel case of msgHdr for the static voids of
controlvm_respond, controlvm_init_response, cnotrolvm_respond_-
chipset_init, & controlvm_respond_physdev_changestate
msgHdr => msghdr
Signed-off-by: Jeffrey Brown
---
.../staging/unisys/visorchipset/visorchipset_main.c
From: Jeffrey
Changed this variable to controlvm_pending_msg
Controlvm_pending_msg => controlvm_pending_msg
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/unisys/
From: Jeffrey
Changed the camel cases of three controlvm_message_headers that
are related to each other
g_DiagMsgHdr => g_diagmsghdr
g_ChipsetMsgHdr => g_chipsetmsghdr
g_DelDumpMsgHdr => g_deldumpmsghdr
Signed-off-by: Jeffrey Brown
---
.../unisys/visorchipset/visorchipset_main.c| 28 ++
From: Jeffrey
Fixed camel cases in the static int _init at line 2365
Away -> cleanups
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 14 +++---
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/drivers/staging/unisys/visorchipset/
From: Jeffrey
Changed this static struct LIVEDUMP_INFO into livedump_info
Livedump_info = livedump_info
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/unisys/viso
From: Jeffrey
Changed the camel cases for ethe static void device_create_response
busNo => busno
devNo => devno
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/uni
From: Jeffrey
Changed the camel cases fore the static void device_resume_response
busNo -> busno
devNo -> devno
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/uni
From: Jeffrey
Changed the uuid_le UltraDiagpoolChannelProtocolGuid to
ultradiagpoolchannelprotocolguid in visorchipset_main.c
UltraDiagpoolChannelProtocolGuid => ultradiagpoolchannelprotocolguid
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 4 ++--
From: Jeffrey
Changed the camel cases that manages the info for a CONTROLVM_DUMP_
CAPTURESTATE and CONTROLVM/REPORTEVENT
BusDev_Server_Notifiers => busdev_server_notifiers
BusDev_Client_Notifiers => busdev_client_notifiers
Signed-off-by: Jeffrey Brown
---
.../unisys/visorchipset/visorchipset_m
From: Jeffrey
Changed the static LIST_HEAD to parahotplug_request_list
Parahotplug_request => parahotplug_request
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 8
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/staging
From: Jeffrey
Changed the camel case of remainingSteps in the static ssize_ts of
remaining_steps_show and remaining_steps_store
remainingSteps => remainingsteps
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 12 ++--
1 file changed, 6 inserti
From: Jeffrey
Changed the camel case msgHdr to msghdr in the static voids
controlvm_respond, controlvm_respond_chipset_init, & controlvm_-
respond_physdev_changestate
msgHdr => msghdr
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 6 +++---
1 file ch
From: Jeffrey
Changed the camel cases for the void visorchipset_save_message
localSavedCrashMsgOffset -> localsavedcrashmsgoffset
localSavedCrashMsgCount -> localsavedcrashmsgcount
Signed-off-by: Jeffrey Brown
---
.../staging/unisys/visorchipset/visorchipset_main.c| 18 +-
From: Jeffrey
Changed the camel cases for the static void device_destroy_response
busNo -> busno
devNo -> devno
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/uni
From: Jeffrey
Changed this static struct pointer to periodic_controlvm_workqueue
Periodic_controlvm_workqueue => periodic_controlvm_workqueue
Signed-off-by: Jeffrey Brown
---
.../staging/unisys/visorchipset/visorchipset_main.c| 18 +-
1 file changed, 9 insertions(+), 9 dele
From: Jeffrey
Changed the static struct Putfile_buffer_list_pool to
putfile_buffer_list_pool
Putfile_buffer_list_pool => putfile_buffer_list_pool
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 12 ++--
1 file changed, 6 insertions(+), 6 delet
From: Jeffrey
Fixed the static void initialize_controlvm_payload camel cases
payloadOffset -> payloadoffset
payloadBytes -> payloadbytes
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 10 +-
1 file changed, 5 insertions(+), 5 deletions(-)
di
From: Jeffrey
Changed the camel cases in the static void device_epilog
busNo -> busno
devNo -> devNo
msgHdr -> msghdr
needResponse -> needresponse
pDevInfo -> pdevinfo
Signed-off-by: Jeffrey Brown
---
.../unisys/visorchipset/visorchipset_main.c| 40 +++---
1 file change
From: Jeffrey
Fixed all logical continuations by moving the operators to their
correct lines, (which is the line previous to the operator)
Signed-off-by: Jeffrey Brown
---
.../unisys/visorchipset/visorchipset_main.c| 23 +++---
1 file changed, 11 insertions(+), 12 delet
From: Jeffrey
Changed the camel cases for the variables for the struct LIVEDUMP_
INFO
Dumpcapture_header => dumpcapture_header
Gettextdump_header => gettextdump_header
Dumpcomplete_header => dumpcomplete_header
Gettextdump_outstanding => gettextdump_outstanding
Signed-off-by: Jeffrey Brown
---
From: Jeffrey
Fixed all alignment issues in visorchipset_main.c, kept the 80
character warnings in mind when doing so, and if there are any
warnings coming from this patch it is most likely that there was
an 80 character warning at the line before I fixed the alignment
Signed-off-by: Jeffrey Bro
From: Jeffrey
Changed the varaible Visorchipset_cache_buffers_in_use to
visorchipset_cache_buffers_in_use
Visorchipset_cache_buffer_in_use =>visorchipset_cache_buffer_in_use
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 6 +++---
1 file changed, 3 i
From: Jeffrey
Changed this camel case to periodic_controlvm_work
Periodic_controlvm_work => periodic_controlvm_work
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 14 +++---
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/driver
From: Jeffrey
Changed the static ulong Poll_jiffies to poll_jiffies using
refactor and rename
Poll_jiffies => poll_jiffies
Signed-off-by: Jeffrey Brown
---
.../staging/unisys/visorchipset/visorchipset_main.c | 20 ++--
1 file changed, 10 insertions(+), 10 deletions(-)
diff --
From: Jeffrey
Changed the camel case g_DeviceChangeStatePacket to g_deicechange-
statepacket
g_DeviceChangeStatePacket => g_devicechangestatepacket
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 10 +-
1 file changed, 5 insertions(+), 5 delet
From: Jeffrey
Chagned the static void's name to businfo_clear
busInfo_clear => businfo_clear
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/unisys/visorchipset/vi
From: Jeffrey
Changed the static LIST_HEAD to putfile_request_list
Putfile_request_list => putfile_request_list
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/unisys/vi
From: Jeffrey
Cleaned up all of the camel cases in the static void chipset_init
Away -> cleanups
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/unisys/visorchipset/
From: Jeffrey
Changed the static BOOL to controlvm_pending_msg_valid
Controlvm_Pending_Msg_Valid => controlvm_pending_msg_valid
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 8
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/d
From: Jeffrey
Changed the camel cases of toolAction to toolaction in the static
ssize_ts toolaction_store, and toolaction_show
toolAction => toolaction
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 12 ++--
1 file changed, 6 insertions(+), 6
From: Jeffrey
Changed the static dev_t at line 252 to majordev
Major => majordev
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 8
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/unisys/visorchipset/visorchipset
From: Jeffrey
Changed the static void devInfo_clear to devinfo_clear
devInfo_clear => devinfo_clear
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/unisys/visorchi
From: Jeffrey
Changed the static ulong to most_recent_message_jiffies
Most_recent_message_jiffies => most_recent_message_jiffies
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 8
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/
From: Jeffrey
Changed the u32 textId to textid in the static ssize_ts textid_show
and textid_store
textId => textid
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 12 ++--
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/
From: Jeffrey
Replaced the static DEFINE_SEMAPHORE NotifierLock with notifierlock
NotifierLock => notifierlock
Signed-off-by: Jeffrey Brown
---
.../staging/unisys/visorchipset/visorchipset_main.c| 18 +-
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/drivers/
From: Jeffrey
Changed two static ulongs that are supposed to represent invalid
bus/device numbers
g_diagpoolBusNo => g_diagpoolbusno
g_diagpoolDevNo => g_diagpooldevno
Signed-off-by: Jeffrey Brown
---
.../staging/unisys/visorchipset/visorchipset_main.c| 18 +-
1 file change
From: Jeffrey
Changed this variable to controlvm_payload_info
Controlvm_payload_info => controlvm_payload_info
Signed-off-by: Jeffrey Brown
---
drivers/staging/unisys/visorchipset/visorchipset_main.c | 8
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/un
From: Jeffrey
Inserted and formatted braces properly, also removed unnecessary
spaces that were usually surrounding the braces
Signed-off-by: Jeffrey Brown
---
.../unisys/visorchipset/visorchipset_main.c| 24 +-
1 file changed, 10 insertions(+), 14 deletions(-)
dif
I am really sorry about the exterme number of patches I
gave you, it was a very large file to take care of I could
make the number of patches a little less if you want. The
patches start off simple by taking care of trivial stuff
like alignment and space after casts. The patches go into
the camel
From: Jeffrey
Removed all spaces after casts in visorchipset_main.c
Signed-off-by: Jeffrey Brown
---
.../unisys/visorchipset/visorchipset_main.c| 62 +++---
1 file changed, 31 insertions(+), 31 deletions(-)
diff --git a/drivers/staging/unisys/visorchipset/visorchipset_
1 - 100 of 158 matches
Mail list logo