diff options
author | Roel Kluin <roel.kluin@gmail.com> | 2010-03-11 12:07:22 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-03-15 15:47:01 -0700 |
commit | dec9951b8ad86c591af7b452966bf48b307a4010 (patch) | |
tree | c6bc4b7c02bb51f3cf07d11474ee5e65b9eeed6a /drivers/isdn/hysdn/hysdn_boot.c | |
parent | 9baddeb8c6c7faa7da8706ad629f09ca221850c1 (diff) | |
download | op-kernel-dev-dec9951b8ad86c591af7b452966bf48b307a4010.zip op-kernel-dev-dec9951b8ad86c591af7b452966bf48b307a4010.tar.gz |
isdn: misplaced parenthesis in pof_handle_data()
The parenthesis was misplaced.
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Cc: Karsten Keil <isdn@linux-pingi.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/isdn/hysdn/hysdn_boot.c')
-rw-r--r-- | drivers/isdn/hysdn/hysdn_boot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/isdn/hysdn/hysdn_boot.c b/drivers/isdn/hysdn/hysdn_boot.c index be787e1..4f541ef 100644 --- a/drivers/isdn/hysdn/hysdn_boot.c +++ b/drivers/isdn/hysdn/hysdn_boot.c @@ -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) |