Re: [PATCH 10/24] staging: wilc1000: move wilc_multicast_mac_addr_list to 'wilc_vif' struct

2018-08-26 Thread Ajay Singh
Hi Adham, On Fri, 24 Aug 2018 17:32:46 -0700 Adham Abozaeid wrote: > On Fri, 24 Aug 2018 11:47:14 +0300 > Claudiu Beznea wrote: > > > > > > > On 23.08.2018 13:00, Ajay Singh wrote: > > > Unless ndo_set_rx_mode() gets called quickly I don't think there > > > is any issue here. > > > >

Re: [PATCH 12/24] staging: wilc1000: move static variable 'terminated_handle' to wilc_vif struct

2018-08-26 Thread Ajay Singh
On Fri, 24 Aug 2018 11:46:39 +0300 Claudiu Beznea wrote: > On 23.08.2018 17:36, Ajay Singh wrote: > > On Thu, 23 Aug 2018 11:11:18 +0300 > > Claudiu Beznea wrote: > > > >> On 14.08.2018 09:50, Ajay Singh wrote: > >>> Remove the use of static variable 'terminated_handle' and instead > >>>

Re: [PATCH 20/24] staging: wilc1000: avoid line over 80 chars in tcp_process()

2018-08-26 Thread Ajay Singh
Hi Claudiu, On Fri, 24 Aug 2018 12:31:28 +0300 Claudiu Beznea wrote: > On 23.08.2018 13:33, Ajay Singh wrote: > > On Thu, 23 Aug 2018 11:12:08 +0300 > > Claudiu Beznea wrote: > > > >> On 14.08.2018 09:50, Ajay Singh wrote: > >>> Cleanup patch to avoid line over 80 chars issue reported by

[PATCH 2/6] staging:rtl8192u: Rename function PHY_RF8256_Config() - Style

2018-08-26 Thread John Whitmore
Rename the function PHY_RF8256_Config() to phy_rf8256_config(). This change clears the checkpatch issue with CamelCase naming. This is a simple coding style change which should have no impact on runtime code execution. Signed-off-by: John Whitmore --- drivers/staging/rtl8192u/r8190_rtl8256.c |

[PATCH 3/6] staging:rtl8192u: Refactor phy_RF8256_Config_ParaFile() - Style

2018-08-26 Thread John Whitmore
Rename the function phy_RF8256_Config_ParaFile() to phy_rf8256_config_para_file(). This change clears the checkpatch issue with CamelCase naming. Additionally as the function is only ever used in one file, (r8190_rtl8256.c), the function prototype has been removed from the header file,

[PATCH 4/6] staging:rtl8192u: Rename PHY_SetRF8256CCKTxPower() - Style

2018-08-26 Thread John Whitmore
Rename the function PHY_SetRF8256CCKTxPower() to phy_set_rf8256_cck_tx_power(), to clear the checkpatch issue with CamelCase naming. This is a purely coding style change which should have no impact on runtime code execution. Signed-off-by: John Whitmore ---

[PATCH 6/6] staging:rtl8192u: Add SPDX-License-Identifier tag - Style

2018-08-26 Thread John Whitmore
Add the missing SPDX-License-Identifier tag to clear the checkpatch issue. This is a coding style change which should not impact runtime code execution. Signed-off-by: John Whitmore --- drivers/staging/rtl8192u/r8190_rtl8256.h | 1 + 1 file changed, 1 insertion(+) diff --git

[PATCH 5/6] staging:rtl8192u: Rename PHY_SetRF8256OFDMTxPower() - Style

2018-08-26 Thread John Whitmore
Rename function PHY_SetRF8256OFDMTxPower() to phy_set_rf8256_ofdm_tx_power(), to clear the checkpatch issue with CamelCase naming. This is a coding style change which should have no impact on runtime code execution. Signed-off-by: John Whitmore --- drivers/staging/rtl8192u/r8190_rtl8256.c | 2

[PATCH 0/6] staging:rtl8192u: r8190_rtl8256.h - Style changes

2018-08-26 Thread John Whitmore
This is a simple checkpatch cleanup of the file r8190_rtl8256.h, mostly to clear CamelCase naming problems. The directory contains a copying file which suggests GPL2.0 so that has been added as the missing SPDX-License-Identifier tag. John Whitmore (6): staging:rtl8192u: Rename

[PATCH 1/6] staging:rtl8192u: Rename PHY_SetRF8256Bandwidth() - Style

2018-08-26 Thread John Whitmore
Rename the function PHY_SetRF8256Bandwidth() to phy_set_rf8256_bandwidth(). This change clears the checkpatch issue with CamelCase naming. The parameter Bandwidth has been renamed to bandwidth, for the same reason. Additionally a new line has been added to the parameter list of the function

[PATCH 20/21] staging:rtl8192u: Rename EEPROM_Customer_ID - Style

2018-08-26 Thread John Whitmore
Rename the constant EEPROM_Customer_ID to EEPROM_CUSTOMER_ID, this change clears the checkpatch issue with CamelCase naming. This is purely a coding style change which should have no impact on runtime code execution. Signed-off-by: John Whitmore --- drivers/staging/rtl8192u/r8192U_core.c | 2

[PATCH 21/21] staging:rtl8192u: Rename EEPROM_ChannelPlan - Style

2018-08-26 Thread John Whitmore
Rename the constant EEPROM_ChannelPlan to EEPROM_CHANNEL_PLAN, this clears the checkpatch issue with CamelCase naming. This is purely a coding style change which should have no impact on runtime code execution. Signed-off-by: John Whitmore --- drivers/staging/rtl8192u/r8192U_core.c | 2 +-

[PATCH 19/21] staging:rtl8192u: Rename EEPROM_Default_TxPower - Style

2018-08-26 Thread John Whitmore
rename the constant EEPROM_Default_TxPower to EEPROM_DEFAULT_TX_POWER, this clears the checkpatch issue with CamelCase issue. This is purely a coding style change which should have no impact on runtime code execution. Signed-off-by: John Whitmore --- drivers/staging/rtl8192u/r8192U_core.c | 2

[PATCH 16/21] staging:rtl8192u: Rename EEPROM_Default_ThermalMeter - Style

2018-08-26 Thread John Whitmore
Rename the constant EEPROM_Default_ThermalMeter to EEPROM_DEFAULT_THERNAL_METER, this change clears the checkpatch issue with CamelCase naming. This is purely a coding style change which should have no impact on runtime code execution. Signed-off-by: John Whitmore ---

[PATCH 11/21] staging:rtl8192u: Rename EEPROM_TxPwIndex_CCK - Style

2018-08-26 Thread John Whitmore
Rename the constant EEPROM_TxPwIndex_CCK to EEPROM_TX_PW_INDEX_CCK. This change clears the checkpatch issue with CamelCase naming. The change is coding style in nature so should have no impact on runtime code execution. Signed-off-by: John Whitmore --- drivers/staging/rtl8192u/r8192U_core.c |

[PATCH 18/21] staging:rtl8192u: Rename EEPROM_Default_CrystalCap - Style

2018-08-26 Thread John Whitmore
Rename the constant EEPROM_Default_CrystalCap to EEPROM_DEFAULT_CRYSTAL_CAP, this clears the checkpatch issue with CamelCase naming. This is purely a coding style change which should have no impact on runtime code execution. Signed-off-by: John Whitmore ---

[PATCH 00/21] staging:rtl8192u: r8192U_hw.h - Style

2018-08-26 Thread John Whitmore
This series of patches contain simple coding style changes to the file r8192U_hw.h, most of the changes are to clear the CamelCase issue in checkpatch. To minimise the number of CamelCase names which have to be renamed the unused definitions have been removed from the header file. John Whitmore

[PATCH 15/21] staging:rtl8192u: rename EEPROM_TxPwIndex_Ver - Style

2018-08-26 Thread John Whitmore
Rename the constant EEPROM_TxPwIndex_Ver to EEPROM_TX_PW_INDEX_VER, this clears the checkpatch issue with CamelCase naming. This is purely a coding style change which should have no impact on runtime code execution. Signed-off-by: John Whitmore --- drivers/staging/rtl8192u/r8192U_core.c | 2 +-

[PATCH 17/21] staging:rtl8192u: Rename EEPROM_Default_PwDiff - Style

2018-08-26 Thread John Whitmore
Rename the constant EEPROM_Default_PwDiff to EEPROM_DEFAULT_PW_DIFF, this clears the checkpatch issue with CamelCase naming. This change is purely a coding style change which should have no impact on runtime code execution. Signed-off-by: John Whitmore ---

[PATCH 06/21] staging:rtl8192u: Reorder enum _RTL8192Usb_HW members - Style

2018-08-26 Thread John Whitmore
Reorder the members of enum _RTL8192Usb_HW so that they are in order. This is a coding style change which should have no impact on runtime code execution. Signed-off-by: John Whitmore --- drivers/staging/rtl8192u/r8192U_hw.h | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff

[PATCH 12/21] staging:rtl8192u: Rename EEPROM_TxPwIndex_OFDM_24G_V1 - STYLE

2018-08-26 Thread John Whitmore
Rename the constant EEPROM_TxPwIndex_OFDM_24G_V1 to EEPROM_TX_PW_INDEX_OFDM_24G_V1, this change clears the checkpatch issue with CamelCase naming. This is a coding style change which should have no impact on runtime code execution. Signed-off-by: John Whitmore ---

[PATCH 14/21] staging:rtl8192u: Rename EEPROM_TxPwIndex_CCK_V1 - Style

2018-08-26 Thread John Whitmore
Rename the constant EEPROM_TxPwIndex_CCK_V1 to EEPROM_TX_PW_INDEX_CCK_V1, this clears the checkpatch issue with CamelCase naming. This is purely a coding style change which should have no impact on runtime code execution. Signed-off-by: John Whitmore --- drivers/staging/rtl8192u/r8192U_core.c

[PATCH 10/21] staging:rtl8192u: Rename EEPROM_CrystalCap - Style

2018-08-26 Thread John Whitmore
Rename the constant EEPROM_CrystalCap to EEPROM_CRYSTAL_CAP. This clears the checkpatch issue with CamelCase naming. This is a coding style change which should not impact on runtime code execution. Signed-off-by: John Whitmore --- drivers/staging/rtl8192u/r8192U_core.c | 2 +-

[PATCH 09/21] staging:rtl8192u: Rename EEPROM_PwDiff - Style

2018-08-26 Thread John Whitmore
Rename the constant EEPROM_PwDiff to EEPROM_PW_DIFF. This change clears the checkpatch issue with CamelCase naming. This is a coding style change which should not impact on runtime code execution. Signed-off-by: John Whitmore --- drivers/staging/rtl8192u/r8192U_core.c | 2 +-

[PATCH 05/21] staging:rtl8192u: Remove unused definitions - Style

2018-08-26 Thread John Whitmore
Remove unused definitions from the r8192U_hw.h header file. These are coding style changes which should not impact on runtime code execution. Signed-off-by: John Whitmore --- drivers/staging/rtl8192u/r8192U_hw.h | 149 +-- 1 file changed, 1 insertion(+), 148

[PATCH 04/21] staging:rtl8192u: Refactor BaseBand_Config_Type - Style

2018-08-26 Thread John Whitmore
Rename the type to baseband_config_type to clear the checkpatch issue with CamelCase naming. Remove the 'typedef' directive to clear the issue with defining new types. As it is only used in the file r819xU_phy.c the type has been moved to the r819xU_phy.h file. The enumerated type is only used

[PATCH 13/21] staging:rtl8192u: Rename EEPROM_TxPwIndex_OFDM_24G - Style

2018-08-26 Thread John Whitmore
Rename the constant EEPROM_TxPwIndex_OFDM_24G to EEPROM_TX_PW_INDEX_OFDM_24G, this change clears the checkpatch issue with CamelCase naming. This change is a coding style change which should have no impact on runtime code execution. Signed-off-by: John Whitmore ---

[PATCH 03/21] staging:rtl8192u: Make function rtl8192_phyConfigBB static

2018-08-26 Thread John Whitmore
The function rtl8192_phyConfigBB is only used in the file in which it is defined so can be declared static. Additionally the prototype has been removed from the header file, as it is not used. Signed-off-by: John Whitmore --- drivers/staging/rtl8192u/r819xU_phy.c | 2 +-

[PATCH 07/21] staging:rtl8192u: Rename EEPROM_TxPowerDiff - Style

2018-08-26 Thread John Whitmore
Rename EEPROM_TxPowerDiff to EEPROM_TX_POWER_DIFF. This change clears the checkpatch issue with CamelCase naming. This change is purely a coding style change which should have no impact on runtime code execution. Signed-off-by: John Whitmore --- drivers/staging/rtl8192u/r8192U_core.c | 2 +-

[PATCH 08/21] staging:rtl8192u: Rename EEPROM_ThermalMeter - Style

2018-08-26 Thread John Whitmore
Rename EEPROM_ThermalMeter to EEPROM_THERMAL_METER. This change clears the checkpatch issue with CamelCase naming. This change is a coding style change which should not impact on runtime code execution. Signed-off-by: John Whitmore --- drivers/staging/rtl8192u/r8192U_core.c | 2 +-

[PATCH 01/21] staging:rtl8192u: Refactor enum VERSION_819xU - Style

2018-08-26 Thread John Whitmore
Rename enumerated type VERSION_819xU to version_819xu to clear checkpatch issue with CamelCase naming. Additionally the constants defined by the type are renamed for the same reason. Remove the 'typedef' directive to clear the checkpatch issue with defining new types. The enumerated type has

[PATCH 02/21] staging:rtl8192u: Refactor RT_RF_TYPE_DEF - Style

2018-08-26 Thread John Whitmore
Rename the enumerated type RT_RF_TYPE_DEF to rt_rf_type to comply with the coding standard, lower case type names. Removed the 'def' postscript which provides no additional information. The 'typedef' directive has been removed to clear the checkpatch issue with defining new types. The type has

[PATCH v2] staging: android: ion: Clean unused debug_show memeber of the heap object

2018-08-26 Thread Alexey Skidanov
ION had supported heap debug info under /sys/kernel/debug/ion/. This support have been removed but some leftovers (dead code) still exist. This patch removes the existing dead code. Signed-off-by: Alexey Skidanov --- drivers/staging/android/ion/ion.h | 5 -

Re: [PATCH] staging: android: ion: Clean unused debug_show memeber of the heap object

2018-08-26 Thread Greg KH
On Sun, Aug 26, 2018 at 03:31:24PM +0300, Alexey Skidanov wrote: > Signed-off-by: Alexey Skidanov > --- > drivers/staging/android/ion/ion.h | 5 - > drivers/staging/android/ion/ion_system_heap.c | 24 > 2 files changed, 29 deletions(-) Hi, This is the

[PATCH] staging: android: ion: Clean unused debug_show memeber of the heap object

2018-08-26 Thread Alexey Skidanov
Signed-off-by: Alexey Skidanov --- drivers/staging/android/ion/ion.h | 5 - drivers/staging/android/ion/ion_system_heap.c | 24 2 files changed, 29 deletions(-) diff --git a/drivers/staging/android/ion/ion.h b/drivers/staging/android/ion/ion.h index

{Spam?} SPENDE

2018-08-26 Thread shanemissler606
Mein Name ist SHANE MISSLER. Ich habe gewonnen $ 450,000,000.00 Millionen Gewinner der Massachusetts State Lottery Powerball Jackpot im January 2018.i Ich habe eine Spende von 4.800.000,00 EURO.i geben Sie diese Spende, um Ihnen zu helfen und Ihnen helfen, Ihre Community zu entwickeln.Mail uns