| Submitter | Andrew Morton |
|---|---|
| Date | March 11, 2010, 10:07 p.m. |
| Message ID | <201003112207.o2BM7M3U013456@imap1.linux-foundation.org> |
| Download | mbox | patch |
| Permalink | /patch/47636/ |
| State | Accepted |
| Delegated to: | David Miller |
| Headers | show |
Comments
From: akpm@linux-foundation.org Date: Thu, 11 Mar 2010 14:07:22 -0800 > From: Roel Kluin <roel.kluin@gmail.com> > > 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> Applied. -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Patch
diff -puN drivers/isdn/hysdn/hysdn_boot.c~isdn-misplaced-parenthesis-in-pof_handle_data drivers/isdn/hysdn/hysdn_boot.c --- a/drivers/isdn/hysdn/hysdn_boot.c~isdn-misplaced-parenthesis-in-pof_handle_data +++ a/drivers/isdn/hysdn/hysdn_boot.c @@ -143,7 +143,7 @@ pof_handle_data(hysdn_card * card, int d (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)