[PATCH] Staging rtl8192e: Fixing checkpatch errors

2013-12-26 Thread Matthias Schoepe
We fixed checkpatch errors of the following type: ERROR: "foo * bar" should be "foo *bar" The error was fixed in the following files of the rtl8192e staging driver: rtllib_softmac.c rtllib_rx.c rtllib_crypt.c rtllib.h There are no functional changes in this

[PATCH 07/11] Staging: vt6656: Remove unnecessary spaces in format strings

2013-12-26 Thread Sebastian Rachuj
From: Simon Schuster A space in a format string is unnecessary if it is followed by a line feed. These spaces are removed by this patch. Signed-off-by: Sebastian Rachuj Signed-off-by: Simon Schuster --- drivers/staging/vt6656/bssdb.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)

[PATCH 06/11] Staging: vt6656: Remove line feeds before else

2013-12-26 Thread Sebastian Rachuj
From: Simon Schuster An else belongs in the same line as the closing curly brace of the previous block. Hence, this patch removes line feeds separating a curly brace from the corresponding else. Signed-off-by: Sebastian Rachuj Signed-off-by: Simon Schuster --- drivers/staging/vt6656/bssdb.c |

[PATCH 11/11] Staging: vt6656: Reduce line length of bssdb.c

2013-12-26 Thread Sebastian Rachuj
From: Simon Schuster Long lines are split into multiple ones to reduce the line length. Additionally some alignment fixes are made that previous patches missed. Unfortunately, due to the high indentation levels present in parts of bssdb.c, this patch leaves some lines which are longer than 80 ch

[PATCH 10/11] Staging: vt6656: Combined nested conditions

2013-12-26 Thread Sebastian Rachuj
From: Simon Schuster This patch reduces the level of indentation in bssdb.c of the vt6656 driver by transforming nested conditions to a series of logical conjunctions. E.g. if (cond1) { if (cond2) { block(); } } is transformed to if (cond1 && cond2) { bl

[PATCH 09/11] Staging: vt6656: Correct usage of braces

2013-12-26 Thread Sebastian Rachuj
From: Simon Schuster Conforming to the linux coding style guidelines, a single line block of an if statement does not require curly braces unless another block of the if cascade requires them. Therefore unnecessary curly braces are removed by this patch and missing ones are added. Signed-off-by:

[PATCH 08/11] Staging: vt6656: Combine "else { if" to "else if"

2013-12-26 Thread Sebastian Rachuj
From: Simon Schuster This patch combines single ifs within the block of an else to a single else if statement. Therefore code that looks like that else { if (cond) { statements; } else { other_statements; } } is converted to code that loo

[PATCH 04/11] Staging: vt6656: Correct operator coding style

2013-12-26 Thread Sebastian Rachuj
From: Simon Schuster Adds spaces around operators (like &&, ||, !=, +, ...) and removes spaces before postfix increment and decrement operators. Parentheses around return values are removed, too. Signed-off-by: Sebastian Rachuj Signed-off-by: Simon Schuster --- drivers/staging/vt6656/bssdb.c

[PATCHv2 0/11] Staging: vt6656: Cleanup of checkpatch problems in bssdb.c

2013-12-26 Thread Sebastian Rachuj
This patch series reformats the bssdb.c file of the vt6656 driver in staging. It resolves all errors and some warnings which checkpatch.pl discovered. As requested, the changes are now split into a series of smaller, fine-grained patches. The reference git tree, that was used to create it this tim

[PATCH 05/11] Staging: vt6656: Correct single space mistakes

2013-12-26 Thread Sebastian Rachuj
From: Simon Schuster Adds missing spaces between an if-statement and its condition as well as between the condition and the following curly brace. At casts there is also a space added between the type and the variable. Spaces that either follow an opening parenthese or the sizeof operator or tha

[PATCH 03/11] Staging: vt6656: Remove unnecessary semicolons

2013-12-26 Thread Sebastian Rachuj
From: Simon Schuster After some blocks in bssdb.c there are semicolons that are not required to be there. Therefore they are removed with this patch. Signed-off-by: Sebastian Rachuj Signed-off-by: Simon Schuster --- drivers/staging/vt6656/bssdb.c | 14 +++--- 1 file changed, 7 inserti

[PATCH 02/11] Staging: vt6656: Adjust comments in bssdb.c

2013-12-26 Thread Sebastian Rachuj
From: Simon Schuster Changes C99-style comments to C89-style ones to conform to the linux coding guidelines. Additionally removes plus and minus signs from the function description comments. Signed-off-by: Sebastian Rachuj Signed-off-by: Simon Schuster --- drivers/staging/vt6656/bssdb.c | 218

Можем собрать для Вас контакты только Ваших потенциальных клиентов несколько десятков тысяч в течение суток Skype: prodawez389

2013-12-26 Thread devel
Можем собрать для Вас контакты только Ваших потенциальных клиентов несколько десятков тысяч в течение суток Skype: prodawez389 ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

[PATCH v3.5 08/19] ozwpan: slight optimization of addr compare

2013-12-26 Thread Ding Tianhong
Use possibly more efficient ether_addr_equal instead of memcmp. Cc: Rupesh Gujare Cc: Greg Kroah-Hartman Cc: de...@driverdev.osuosl.org Cc: linux-ker...@vger.kernel.org Signed-off-by: Tan Xiaojun Signed-off-by: Ding Tianhong --- drivers/staging/ozwpan/ozcdev.c | 2 +- drivers/staging/ozwpan/

Re: [PATCH v3 08/19] ozwpan: slight optimization of addr compare

2013-12-26 Thread Ding Tianhong
On 2013/12/25 18:54, Sergei Shtylyov wrote: > Hello. > > On 25-12-2013 7:28, Ding Tianhong wrote: > >> Use possibly more efficient ether_addr_equal >> instead of memcmp. > >> Cc: Rupesh Gujare >> Cc: Greg Kroah-Hartman >> Cc: de...@driverdev.osuosl.org >> Cc: linux-ker...@vger.kernel.org >> Si