Re: [PATCH v8 10/10] tracing/hyper-v: trace hyperv_mmu_flush_tlb_others()

2017-06-11 Thread Vitaly Kuznetsov
Steven Rostedt writes: > On Fri, 09 Jun 2017 20:53:53 +0200 > Paul Bolle wrote: > >> On Fri, 2017-06-09 at 14:32 -0400, Steven Rostedt wrote: >> > I'm sure it works, but it just adds one more way of doing the same >> > thing. I thought that was what perl was always criticized for, and why >> > p

Re: [PATCH] staging: ks7010: use little-endian types

2017-06-11 Thread Tobin C. Harding
On Thu, Jun 08, 2017 at 11:06:54PM -0600, Perry Hooker wrote: > This patch fixes a number of sparse warnings of the form: > drivers/staging/ks7010/ks_hostif.c:2187:29: > warning: incorrect type in assignment (different base types) > generated when storing little-endian data in variables > tha

Re: [PATCH v8 00/34] i.MX Media Driver

2017-06-11 Thread Vladimir Zapolskiy
On 06/10/2017 02:26 AM, Hans Verkuil wrote: > On 10/06/17 01:16, Steve Longerbeam wrote: >> >> >> On 06/07/2017 12:02 PM, Hans Verkuil wrote: >>> We're still waiting for an Ack for patch 02/34, right? >>> >> >> Hi Hans, Rub has provided an Ack for patch 2. >> >>> Other than that everything is ready

Re: [PATCH 2/4] staging: typec: Restrict read pointer to 16 bit of tcpci_read16.

2017-06-11 Thread Guenter Roeck
On 06/11/2017 03:53 AM, ? ? wrote: From: Pan Li Restricted tcpci_read16 argument to 16 bit variable pointer, in accord with the function name. Signed-off-by: Pan Li --- drivers/staging/typec/tcpci.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers

Re: [PATCH 1/4] staging: typec: Replace pd_header_cnt with pd_header_cnt_le

2017-06-11 Thread Guenter Roeck
On 06/11/2017 03:53 AM, ? ? wrote: From: Pan Li Convertn __le to cpu type when access pd_header count. Signed-off-by: Pan Li Reviewed-by: Guenter Roeck --- drivers/staging/typec/tcpci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/typec/tcpc

Re: [PATCH 3/4] staging: typec: Clean endianness of pd_message header assignment.

2017-06-11 Thread Guenter Roeck
On 06/11/2017 03:54 AM, ? ? wrote: From: Pan Li Makes header assignmen happy by shared the memory between __le16 and u16. Signed-off-by: Pan Li --- drivers/staging/typec/pd.h| 10 +- drivers/staging/typec/tcpci.c | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-)

[PATCH 10/10] Staging: rtl8712: ieee80211: fixed coding style issue

2017-06-11 Thread Jaya Durga
Fixed WARNING: line over 80 characters Signed-off-by: Jaya Durga --- drivers/staging/rtl8712/ieee80211.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/rtl8712/ieee80211.c b/drivers/staging/rtl8712/ieee80211.c index 6e673c1..97ef063 100644 --- a/drivers/

[PATCH 7/9] Staging: rtl8712: ieee80211: fixed camelcase coding style issue

2017-06-11 Thread Jaya Durga
Fixed coding style issue Renamed IEs to ie_s Signed-off-by: Jaya Durga --- drivers/staging/rtl8712/ieee80211.c | 2 +- drivers/staging/rtl8712/rtl871x_cmd.c | 20 ++-- drivers/staging/rtl8712/rtl871x_ioctl_linux.c | 16 drivers/staging/rtl8712

[PATCH 9/9] Staging: rtl8712: ieee80211: fixed camelcase coding style issue

2017-06-11 Thread Jaya Durga
Fixed coding style issue Renamed Ssid to ssid Renamed Ssid_Length to ssid_length Signed-off-by: Jaya Durga --- drivers/staging/rtl8712/ieee80211.c | 4 ++-- drivers/staging/rtl8712/os_intfs.c| 4 ++-- drivers/staging/rtl8712/rtl871x_cmd.c | 8 +++ drivers/st

[PATCH 8/9] Staging: rtl8712: ieee80211: fixed camelcase coding style issue

2017-06-11 Thread Jaya Durga
Fixed coding style issue Renamed Privacy to privacy Signed-off-by: Jaya Durga --- drivers/staging/rtl8712/ieee80211.c| 2 +- drivers/staging/rtl8712/rtl871x_mlme.c | 8 drivers/staging/rtl8712/wlan_bssdef.h | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dri

[PATCH 4/4] staging: typec: Clean endianness of pd_message header access.

2017-06-11 Thread ? ?
From: Pan Li Makes header access happy by shared the memory between __le16 and u16. Signed-off-by: Pan Li --- drivers/staging/typec/pd.h| 5 + drivers/staging/typec/tcpci.c | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/drivers/staging/typec/pd.h b/driver

[PATCH 3/4] staging: typec: Clean endianness of pd_message header assignment.

2017-06-11 Thread ? ?
From: Pan Li Makes header assignmen happy by shared the memory between __le16 and u16. Signed-off-by: Pan Li --- drivers/staging/typec/pd.h| 10 +- drivers/staging/typec/tcpci.c | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/drivers/staging/typec/pd.h

[PATCH 2/4] staging: typec: Restrict read pointer to 16 bit of tcpci_read16.

2017-06-11 Thread ? ?
From: Pan Li Restricted tcpci_read16 argument to 16 bit variable pointer, in accord with the function name. Signed-off-by: Pan Li --- drivers/staging/typec/tcpci.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/staging/typec/tcpci.c b/drivers/staging

[PATCH 1/4] staging: typec: Replace pd_header_cnt with pd_header_cnt_le

2017-06-11 Thread ? ?
From: Pan Li Convertn __le to cpu type when access pd_header count. Signed-off-by: Pan Li --- drivers/staging/typec/tcpci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/typec/tcpci.c b/drivers/staging/typec/tcpci.c index df72d8b..2adb543 100644 --- a/

[PATCH 0/4] staging: typec: Clean endianness of pd_message header.

2017-06-11 Thread ? ?
From: Pan Li *** BLURB HERE *** Pan Li (4): Clean endianness by pd_header_cnt_le. Restrict read pointer to 16 bit of tcpci_read16. Clean endianness of pd_message header assignment. Clean endianness of pd_message header access. drivers/staging/typec/pd.h| 15 ++- drivers

[GIT PULL] Staging/IIO driver fixes for 4.12-rc5

2017-06-11 Thread Greg KH
The following changes since commit 08332893e37af6ae779367e78e444f8f9571511d: Linux 4.12-rc2 (2017-05-21 19:30:23 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git/ tags/staging-4.12-rc5 for you to fetch changes up to 26f4b1f7a8d