Searched hist:"8 a4606c6429d2600deded63d6d3fbe99af99942d" (Results 1 – 1 of 1) sorted by relevance
/linux/drivers/dio/ |
H A D | dio.c | diff 8a4606c6429d2600deded63d6d3fbe99af99942d Thu Jan 27 14:50:49 CET 2022 Aleksa Vučković <aleksav013@gmail.com> drivers: dio: brace should be on the previous line
This patch fixes the checkpatch.pl errors and warnings:
< ERROR: open brace '{' following struct go on the same line < +struct dioname < +{ < < ERROR: that open brace { should be on the previous line < +static struct dioname names[] = < +{ < < ERROR: that open brace { should be on the previous line < + for (scode = 0; scode < DIO_SCMAX; ++scode) < + { < < WARNING: braces {} are not necessary for any arm of this statement < + if (scode >= DIOII_SCBASE) { < [...] < + } else if (scode > DIO_SCMAX || scode < 0) < [...] < + else if (DIO_SCINHOLE(scode)) < [...]
Signed-off-by: Aleksa Vučković <aleksav013@gmail.com> Link: https://lore.kernel.org/r/20220127135054.27281-2-aleksav013@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
|