Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1365851 > unrolled thread
| Started by | Daeseok Youn <daeseok.youn@gmail.com> |
|---|---|
| First post | 2016-03-29 06:50 +0200 |
| Last post | 2016-03-29 06:50 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
[PATCH 3/3] staging: dgnc: fix Logical continuations. Daeseok Youn <daeseok.youn@gmail.com> - 2016-03-29 06:50 +0200
| From | Daeseok Youn <daeseok.youn@gmail.com> |
|---|---|
| Date | 2016-03-29 06:50 +0200 |
| Subject | [PATCH 3/3] staging: dgnc: fix Logical continuations. |
| Message-ID | <rhTLj-Yu-13@gated-at.bofh.it> |
fix checkpatch.pl warning about
'Logical continuations should be on the previous line'
Signed-off-by: Daeseok Youn <daeseok.youn@gmail.com>
---
drivers/staging/dgnc/dgnc_neo.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/dgnc/dgnc_neo.c b/drivers/staging/dgnc/dgnc_neo.c
index 9412d25..3e490de 100644
--- a/drivers/staging/dgnc/dgnc_neo.c
+++ b/drivers/staging/dgnc/dgnc_neo.c
@@ -1811,9 +1811,9 @@ static void neo_vpd(struct dgnc_board *brd)
* 0x10 : long resource name tage (PCI-66 files)
* 0x7F : small resource end tag
*/
- if (((brd->vpd[0x08] != 0x82)
- && (brd->vpd[0x10] != 0x82))
- || (brd->vpd[0x7F] != 0x78)) {
+ if (((brd->vpd[0x08] != 0x82) &&
+ (brd->vpd[0x10] != 0x82)) ||
+ (brd->vpd[0x7F] != 0x78)) {
memset(brd->vpd, '\0', NEO_VPD_IMAGESIZE);
} else {
--
1.9.1
Back to top | Article view | linux.kernel
csiph-web