Rev 3852 | Rev 3908 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3852 | Rev 3906 | ||
---|---|---|---|
Line 317... | Line 317... | ||
317 | } |
317 | } |
318 | 318 | ||
319 | /** |
319 | /** |
320 | * The driver works in polled mode, so no interrupt should be handled by it. |
320 | * The driver works in polled mode, so no interrupt should be handled by it. |
321 | */ |
321 | */ |
322 | static irq_ownership_t sgcn_claim(void) |
322 | static irq_ownership_t sgcn_claim(void *instance) |
323 | { |
323 | { |
324 | return IRQ_DECLINE; |
324 | return IRQ_DECLINE; |
325 | } |
325 | } |
326 | 326 | ||
327 | /** |
327 | /** |
328 | * The driver works in polled mode, so no interrupt should be handled by it. |
328 | * The driver works in polled mode, so no interrupt should be handled by it. |
329 | */ |
329 | */ |
330 | static void sgcn_irq_handler(irq_t *irq, void *arg, ...) |
330 | static void sgcn_irq_handler(irq_t *irq) |
331 | { |
331 | { |
332 | panic("Not yet implemented, SGCN works in polled mode."); |
332 | panic("Not yet implemented, SGCN works in polled mode."); |
333 | } |
333 | } |
334 | 334 | ||
335 | /** |
335 | /** |