public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
* 2.6 PATCH: Fix include/asm-ia64/machvec.h
@ 2003-08-07  7:22 H. J. Lu
  2003-08-07  7:31 ` Martin Pool
  0 siblings, 1 reply; 2+ messages in thread
From: H. J. Lu @ 2003-08-07  7:22 UTC (permalink / raw)
  To: linux-ia64

include/asm-ia64/machvec.h has

/* forward declarations: */
...
struct irq_desc;
...
typedef struct irq_desc *ia64_mv_irq_desc (unsigned int);

But struct irq_desc is never declared anywhere. Here is a patch to
fix it.


H.J.
---
--- linux/include/linux/irq.h.irq	Sun Jul 27 10:01:10 2003
+++ linux/include/linux/irq.h	Wed Aug  6 23:39:47 2003
@@ -56,7 +56,7 @@ typedef struct hw_interrupt_type  hw_irq
  *
  * Pad this out to 32 bytes for cache and indexing reasons.
  */
-typedef struct {
+typedef struct irq_desc {
 	unsigned int status;		/* IRQ status */
 	hw_irq_controller *handler;
 	struct irqaction *action;	/* IRQ action list */


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2003-08-07  7:31 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-08-07  7:22 2.6 PATCH: Fix include/asm-ia64/machvec.h H. J. Lu
2003-08-07  7:31 ` Martin Pool

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox