summaryrefslogtreecommitdiff
path: root/drivers/staging/dgnc
diff options
context:
space:
mode:
authorDaeseok Youn <daeseok.youn@gmail.com>2016-03-29 04:48:57 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-03-31 04:06:17 (GMT)
commit3996ae3482935fb531e522b3f23248a6581015a8 (patch)
tree7977ee052d667addc65ac09676ddc788fb6baa2c /drivers/staging/dgnc
parentffe4f329460ded65b339522abcbdc7aa18021dc9 (diff)
downloadlinux-3996ae3482935fb531e522b3f23248a6581015a8.tar.xz
staging: dgnc: fix Logical continuations.
fix checkpatch.pl warning about 'Logical continuations should be on the previous line' Signed-off-by: Daeseok Youn <daeseok.youn@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/dgnc')
-rw-r--r--drivers/staging/dgnc/dgnc_neo.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/dgnc/dgnc_neo.c b/drivers/staging/dgnc/dgnc_neo.c
index 6105ccb..2da6a72 100644
--- a/drivers/staging/dgnc/dgnc_neo.c
+++ b/drivers/staging/dgnc/dgnc_neo.c
@@ -1791,9 +1791,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 {