search for: _linux_irqreturn_h

Displaying 1 result from an estimated 1 matches for "_linux_irqreturn_h".

2013 Aug 16
0
RocketRAID cards (actually, solved)
..._linux.h, their definition redefines what the Linux header files say. I made the following change. Note that I wanted to make sure IRQ_HANDLED was defined, presuming it's in use elsewhere, and I'm making minimal changes to the code. /* #ifndef IRQ_HANDLED */ #ifndef _LINUX_IRQRETURN_H 4. In osm_linux.c, I changed from the first line below to the second. /* SCpnt->result = ((DRIVER_INVALID|SUGGEST_ABORT)<<24) | (DID_ABORT<<16); */ SCpnt->result = ((DRIVER_INVALID|TASK_ABORTED)<<24) | (DID_ABORT<<16); Again, some defines are long go...