Hi all, In the driver I use (not RT) there is a irq request done like this : request_irq(ThisAdapter->PciFunctionZero.InterruptLine ,ISRHdlr,SA_SHIRQ,"SBCS_Bridge",ThisAdapter); where ISRHdlr is declared as : void ISRHdlr(int irq ,void *dev_id,struct pt_regs *regs) so when I decided to turn the drive to RT I have done this : remove the request_irq function and replaced it by: rt_request_global_irq(ThisAdapter->PciFunctionZero.InterruptLine ,ISRHdlr); When I insmod the module I have a Kernel Panic....but when I comment (/* */) this line it doesn't crashes! Do you know what i did wrong ? Thanks in advance for your answer Regards Jean-Denis ROUX __________________________________________________ Do You Yahoo!? Talk to your friends online and get email alerts with Yahoo! Messenger. http://im.yahoo.com/ -- [rtl] --- To unsubscribe: echo "unsubscribe rtl" | mail [EMAIL PROTECTED] OR echo "unsubscribe rtl <Your_email>" | mail [EMAIL PROTECTED] --- For more information on Real-Time Linux see: http://www.rtlinux.org/rtlinux/
