From: Roman Z. <zi...@fh...> - 2000-06-16 11:39:42
|
Hi, > These worked for me... The amiints.c changes look fine, can you commit them? For amifb.c I want to commit something else (I didn't test it yet, as much as I wanted, but I don't expect bigger problems.) bye, Roman > - if (--ami_ablecount[irq]) > - return; > + ami_ablecount[irq]--; > + if (ami_ablecount[irq]<0) ami_ablecount[irq]=0; > + else if (ami_ablecount[irq]) return; Could you indent that a bit? :) ami_ablecount should never go negativ, but the other ppc version don't have a count at all, so maybe somethings expects a broken behaviour... bye, Roman |