Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dec9951b authored by Roel Kluin's avatar Roel Kluin Committed by David S. Miller
Browse files

isdn: misplaced parenthesis in pof_handle_data()



The parenthesis was misplaced.

Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Cc: Karsten Keil <isdn@linux-pingi.de>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9baddeb8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -143,7 +143,7 @@ pof_handle_data(hysdn_card * card, int datlen)
					     (boot->pof_recid == TAG_CABSDATA) ? "CABSDATA" : "ABSDATA",
					     datlen, boot->pof_recoffset);

			if ((boot->last_error = card->writebootseq(card, boot->buf.BootBuf, datlen) < 0))
			if ((boot->last_error = card->writebootseq(card, boot->buf.BootBuf, datlen)) < 0)
				return (boot->last_error);	/* error writing data */

			if (boot->pof_recoffset + datlen >= boot->pof_reclen)