Commit 3996ae34 authored by Daeseok Youn's avatar Daeseok Youn Committed by Greg Kroah-Hartman
Browse files

staging: dgnc: fix Logical continuations.



fix checkpatch.pl warning about
'Logical continuations should be on the previous line'

Signed-off-by: default avatarDaeseok Youn <daeseok.youn@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ffe4f329
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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 {