net: enic: include irq.h for irqreturn_t definitions
authorJosh Boyer <[email protected]>
Wed, 2 Apr 2014 15:24:00 +0000 (11:24 -0400)
committerDavid S. Miller <[email protected]>
Thu, 3 Apr 2014 18:04:34 +0000 (14:04 -0400)
The enic driver fails to build on ARM with:

In file included from drivers/net/ethernet/cisco/enic/enic_res.c:40:0:
drivers/net/ethernet/cisco/enic/enic.h:48:2: error: expected specifier-qualifier-list before 'irqreturn_t'
  irqreturn_t (*isr)(int, void *);
  ^

Nothing in the driver is explicitly including the irq definitions, so we add
an include of linux/irq.h to pick them up.

Signed-off-by: Josh Boyer <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
drivers/net/ethernet/cisco/enic/enic.h

index e9f7c656ddda9728dc4a17497185b2457d8b6d9d..e35c8e0202adda08dec6d53586bdd9f7da89a2e9 100644 (file)
@@ -29,6 +29,7 @@
 #include "vnic_stats.h"
 #include "vnic_nic.h"
 #include "vnic_rss.h"
+#include <linux/irq.h>
 
 #define DRV_NAME               "enic"
 #define DRV_DESCRIPTION                "Cisco VIC Ethernet NIC Driver"