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
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(-)
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 |
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
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
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:
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
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
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
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
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
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
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel
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/
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
15 matches
Mail list logo