diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-26 12:41:18 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-26 12:41:18 -0500 |
commit | 9ae21d1bb376436285cd5346d3e4b3655d6dd1b9 (patch) | |
tree | 8f889770fae721da63bd378c1834a87e2eb1cfb5 /drivers/isdn/hisax/hisax_fcpcipnp.c | |
parent | f9b4192923fa6e38331e88214b1fe5fc21583fcc (diff) | |
parent | e9415777b1cd0eaf4d1d3d61772f0e6d5c2551ad (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/bunk/trivial
* git://git.kernel.org/pub/scm/linux/kernel/git/bunk/trivial:
drivers/char/ftape/lowlevel/fdc-io.c: Correct a comment
Kconfig help: MTD_JEDECPROBE already supports Intel
Remove ugly debugging stuff
do_mounts.c: Minor ROOT_DEV comment cleanup
BUG_ON() Conversion in drivers/s390/block/dasd_devmap.c
BUG_ON() Conversion in mm/mempool.c
BUG_ON() Conversion in mm/memory.c
BUG_ON() Conversion in kernel/fork.c
BUG_ON() Conversion in ipc/sem.c
BUG_ON() Conversion in fs/ext2/
BUG_ON() Conversion in fs/hfs/
BUG_ON() Conversion in fs/dcache.c
BUG_ON() Conversion in fs/buffer.c
BUG_ON() Conversion in input/serio/hp_sdc_mlc.c
BUG_ON() Conversion in md/dm-table.c
BUG_ON() Conversion in md/dm-path-selector.c
BUG_ON() Conversion in drivers/isdn
BUG_ON() Conversion in drivers/char
BUG_ON() Conversion in drivers/mtd/
Diffstat (limited to 'drivers/isdn/hisax/hisax_fcpcipnp.c')
-rw-r--r-- | drivers/isdn/hisax/hisax_fcpcipnp.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/isdn/hisax/hisax_fcpcipnp.c b/drivers/isdn/hisax/hisax_fcpcipnp.c index dc7ef957e897..dbcca287ee2c 100644 --- a/drivers/isdn/hisax/hisax_fcpcipnp.c +++ b/drivers/isdn/hisax/hisax_fcpcipnp.c | |||
@@ -387,8 +387,7 @@ static void hdlc_fill_fifo(struct fritz_bcs *bcs) | |||
387 | 387 | ||
388 | DBG(0x40, "hdlc_fill_fifo"); | 388 | DBG(0x40, "hdlc_fill_fifo"); |
389 | 389 | ||
390 | if (skb->len == 0) | 390 | BUG_ON(skb->len == 0); |
391 | BUG(); | ||
392 | 391 | ||
393 | bcs->ctrl.sr.cmd &= ~HDLC_CMD_XME; | 392 | bcs->ctrl.sr.cmd &= ~HDLC_CMD_XME; |
394 | if (bcs->tx_skb->len > bcs->fifo_size) { | 393 | if (bcs->tx_skb->len > bcs->fifo_size) { |
@@ -630,9 +629,7 @@ static void fritz_b_l2l1(struct hisax_if *ifc, int pr, void *arg) | |||
630 | 629 | ||
631 | switch (pr) { | 630 | switch (pr) { |
632 | case PH_DATA | REQUEST: | 631 | case PH_DATA | REQUEST: |
633 | if (bcs->tx_skb) | 632 | BUG_ON(bcs->tx_skb); |
634 | BUG(); | ||
635 | |||
636 | bcs->tx_skb = skb; | 633 | bcs->tx_skb = skb; |
637 | DBG_SKB(1, skb); | 634 | DBG_SKB(1, skb); |
638 | hdlc_fill_fifo(bcs); | 635 | hdlc_fill_fifo(bcs); |