diff options
author | Thomas Faber <thfabba@gmx.de> | 2012-01-18 17:45:44 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-01-19 06:01:11 +0400 |
commit | 17f1bbca1baf2f652fa9c102ec239d6abded94c1 (patch) | |
tree | 0e9fe9dea3e7ab420700f5c866f55919d1c15831 /drivers/net/ethernet/faraday | |
parent | b924551bed09f61b64f21bffe241afc5526b091a (diff) | |
download | linux-17f1bbca1baf2f652fa9c102ec239d6abded94c1.tar.xz |
net: ftgmac100/ftmac100: add missing interrupt.h include
Fixes compilation failure of these modules due to missing
irqreturn_t type for the ft(g)mac100_interrupt definition.
Signed-off-by: Thomas Faber <thfabba@gmx.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/faraday')
-rw-r--r-- | drivers/net/ethernet/faraday/ftgmac100.c | 1 | ||||
-rw-r--r-- | drivers/net/ethernet/faraday/ftmac100.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/ethernet/faraday/ftgmac100.c b/drivers/net/ethernet/faraday/ftgmac100.c index fb5579a3b19d..47f85c337cf7 100644 --- a/drivers/net/ethernet/faraday/ftgmac100.c +++ b/drivers/net/ethernet/faraday/ftgmac100.c @@ -25,6 +25,7 @@ #include <linux/etherdevice.h> #include <linux/ethtool.h> #include <linux/init.h> +#include <linux/interrupt.h> #include <linux/io.h> #include <linux/module.h> #include <linux/netdevice.h> diff --git a/drivers/net/ethernet/faraday/ftmac100.c b/drivers/net/ethernet/faraday/ftmac100.c index a127cb2476c7..bb336a0959c9 100644 --- a/drivers/net/ethernet/faraday/ftmac100.c +++ b/drivers/net/ethernet/faraday/ftmac100.c @@ -25,6 +25,7 @@ #include <linux/etherdevice.h> #include <linux/ethtool.h> #include <linux/init.h> +#include <linux/interrupt.h> #include <linux/io.h> #include <linux/mii.h> #include <linux/module.h> |