Re: Problems attaching an interrupt handler

2001-01-21 Thread Warner Losh
In message <[EMAIL PROTECTED]> "Alex" writes: : This is a multi-part message in MIME format. : : --=_NextPart_000__01C083CD.0EB2B120 : Content-Type: text/plain; : charset="iso-8859-1" : Content-Transfer-Encoding: 7bit : : Hi, : : I started experimenting with kernel hacking to writ

Re: Problems attaching an interrupt handler

2001-01-21 Thread Bosko Milekic
This: bus_teardown_intr(dev, sc->irq, sc->ih) != 0 ); looks pretty odd. See your ir_detach(). Alex wrote: > Hi, > > I started experimenting with kernel hacking to write an > infrared device driver. Therfore I read Alexander Langer's > article on DaemonNews and started modifying the led.c > examp

Problems attaching an interrupt handler

2001-01-21 Thread Alex
Hi, I started experimenting with kernel hacking to write an infrared device driver. Therfore I read Alexander Langer's article on DaemonNews and started modifying the led.c example code. Unfortunately I can't get my interrupt handler working. Could anyone please have a short look on my code. O