diff options
author | John Crispin <john@openwrt.org> | 2014-09-12 06:52:14 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2014-09-12 06:52:14 +0000 |
commit | bdc1357e7bb9cbc57243e7e51e3bb9dd87d9e6da (patch) | |
tree | 9b43f465c69c85a714705999d70958ba3b3bb2b1 /target/linux/atheros/patches-3.14/110-ar2313_ethernet.patch | |
parent | 300021d6c428c3865c18cc8574cc7b8c50b8a299 (diff) | |
download | upstream-bdc1357e7bb9cbc57243e7e51e3bb9dd87d9e6da.tar.gz upstream-bdc1357e7bb9cbc57243e7e51e3bb9dd87d9e6da.tar.bz2 upstream-bdc1357e7bb9cbc57243e7e51e3bb9dd87d9e6da.zip |
atheros: remove useless includes
Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
SVN-Revision: 42493
Diffstat (limited to 'target/linux/atheros/patches-3.14/110-ar2313_ethernet.patch')
-rw-r--r-- | target/linux/atheros/patches-3.14/110-ar2313_ethernet.patch | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/target/linux/atheros/patches-3.14/110-ar2313_ethernet.patch b/target/linux/atheros/patches-3.14/110-ar2313_ethernet.patch index 657f96c7b9..1bd445b2a7 100644 --- a/target/linux/atheros/patches-3.14/110-ar2313_ethernet.patch +++ b/target/linux/atheros/patches-3.14/110-ar2313_ethernet.patch @@ -33,7 +33,7 @@ +obj-$(CONFIG_NET_AR231X) += ar231x.o --- /dev/null +++ b/drivers/net/ethernet/atheros/ar231x/ar231x.c -@@ -0,0 +1,1231 @@ +@@ -0,0 +1,1218 @@ +/* + * ar231x.c: Linux driver for the Atheros AR231x Ethernet device. + * @@ -55,39 +55,26 @@ + */ + +#include <linux/module.h> -+#include <linux/version.h> +#include <linux/types.h> +#include <linux/errno.h> +#include <linux/ioport.h> -+#include <linux/pci.h> +#include <linux/netdevice.h> +#include <linux/etherdevice.h> +#include <linux/interrupt.h> -+#include <linux/hardirq.h> +#include <linux/skbuff.h> +#include <linux/init.h> +#include <linux/delay.h> +#include <linux/mm.h> -+#include <linux/highmem.h> -+#include <linux/sockios.h> -+#include <linux/pkt_sched.h> +#include <linux/mii.h> +#include <linux/phy.h> -+#include <linux/ethtool.h> -+#include <linux/ctype.h> +#include <linux/platform_device.h> +#include <linux/io.h> -+#include <linux/uaccess.h> -+ -+#include <net/sock.h> -+#include <net/ip.h> + +#define AR2313_MTU 1692 +#define AR2313_PRIOS 1 +#define AR2313_QUEUES (2*AR2313_PRIOS) +#define AR2313_DESCR_ENTRIES 64 + -+ +#ifndef min +#define min(a, b) (((a) < (b)) ? (a) : (b)) +#endif |