Skip site navigation (1)Skip section navigation (2)
Date:      15 Dec 1998 17:52:34 +0100
From:      Martin Recktenwald <mreckt@wurzelausix.CS.Uni-SB.DE>
To:        freebsd-isdn@FreeBSD.ORG
Subject:   "bug" in i4b_avm_a1.c
Message-ID:  <wtziufdmjot.fsf@wurzelausix.cs.uni-sb.de>

next in thread | raw e-mail | index | archive | help
Hello,

the following in i4b_avm_a1.c is wrong:

#define  AVM_CONF_RD_HIRQ       0x01    /* 0 = HSCX IRQ active */
#define  AVM_CONF_RD_IIRQ       0x02    /* 0 = ISAC IRQ active */

it should be:

#define  AVM_CONF_RD_IIRQ       0x01    /* 0 = ISAC IRQ active */
#define  AVM_CONF_RD_HIRQ       0x02    /* 0 = HSCX IRQ active */

Verified with some debugging work and a look in the Linux AVM
driver. It doesn't hurt in the current i4b implementation because
these two defines are never used.

   Martin.


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-isdn" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?wtziufdmjot.fsf>