Re: [PATCH v3] staging: rtl8712: Use ether_addr_copy() instead of memcpy()

2015-05-20 Thread Jagan Teki
On 21 May 2015 at 01:10, Larry Finger wrote: > On 05/20/2015 01:41 PM, Jagan Teki wrote: >> >> On 18 May 2015 at 22:02, Jagan Teki wrote: >>> >>> Fixes Warning encounter this by applying checkpatch.pl against this file: >>> Prefer ether_addr_copy() over

Re: [PATCH] staging: rtl8188eu: core: Fix line over 80 characters

2015-05-20 Thread Jagan Teki
On 18 May 2015 at 22:34, Jagan Teki wrote: > This patch fixes line over 80 characters warninings while > running checkpatch.pl - "WARNING: line over 80 characters" > > Signed-off-by: Jagan Teki > Cc: Greg Kroah-Hartman > Cc: Larry Finger > --- > drivers/st

Re: [PATCH v3] staging: rtl8712: Use ether_addr_copy() instead of memcpy()

2015-05-20 Thread Jagan Teki
On 18 May 2015 at 22:02, Jagan Teki wrote: > Fixes Warning encounter this by applying checkpatch.pl against this file: > Prefer ether_addr_copy() over memcpy() if the Ethernet addresses > are __aligned(2) > > pahole output for respective structures: > - addr->sa_d

[PATCH] staging: rtl8188eu: core: Fix line over 80 characters

2015-05-18 Thread Jagan Teki
This patch fixes line over 80 characters warninings while running checkpatch.pl - "WARNING: line over 80 characters" Signed-off-by: Jagan Teki Cc: Greg Kroah-Hartman Cc: Larry Finger --- drivers/staging/rtl8188eu/core/rtw_ap.c | 52 +++-- 1 file c

[PATCH v3] staging: rtl8712: Use ether_addr_copy() instead of memcpy()

2015-05-18 Thread Jagan Teki
ed and have some patches with this change as well. "staging: rtl8712: fix Prefer ether_addr_copy() over memcpy()" (sha1: 36e4d8826b317080e283e4edd08bf8d5ac706f38) Signed-off-by: Jagan Teki Cc: Greg Kroah-Hartman Cc: Larry Finger Cc: Florian Schilhabel --- Changes for v3: - R

Re: [PATCH v2] staging: rtl8712: Use ether_addr_copy() instead of memcpy()

2015-05-18 Thread Jagan Teki
On 18 May 2015 at 20:08, Dan Carpenter wrote: > On Mon, May 18, 2015 at 07:47:06PM +0530, Jagan Teki wrote: >> struct eeprom_priv { >> u8 bautoload_fail_flag; /* 0 1 */ >> u8 bempty; /* 1

[PATCH v2] staging: rtl8712: Use ether_addr_copy() instead of memcpy()

2015-05-18 Thread Jagan Teki
e patches with this change as well. "staging: rtl8712: fix Prefer ether_addr_copy() over memcpy()" (sha1: 36e4d8826b317080e283e4edd08bf8d5ac706f38) Signed-off-by: Jagan Teki Cc: Greg Kroah-Hartman Cc: Larry Finger Cc: Florian Schilhabel --- Changes for v2: - Describe a changelo

[PATCH] staging: android: Add more help description on Kconfig

2015-05-18 Thread Jagan Teki
This patch adds more help description on android Kconfig for - lowmemory killer - Timed gpio (same for timed output) Signed-off-by: Jagan Teki Cc: Greg Kroah-Hartman Cc: Brian Swetland --- drivers/staging/android/Kconfig | 11 ++- 1 file changed, 10 insertions(+), 1 deletion(-) diff

[PATCH] staging: rtl8712: Use ether_addr_copy() instead of memcpy()

2015-05-17 Thread Jagan Teki
This patch fixes to use ether_addr_copy() instead of memcpy() Encounter this by applying checkpatch.pl against this file: WARNING: Prefer ether_addr_copy() over memcpy() if the Ethernet addresses are __aligned(2) Signed-off-by: Jagan Teki Cc: Greg Kroah-Hartman Cc: Larry Finger Cc