diff options
author | Lennert Buytenhek <buytenh@wantstofly.org> | 2008-06-01 00:54:05 +0200 |
---|---|---|
committer | Lennert Buytenhek <buytenh@wantstofly.org> | 2008-06-12 08:40:23 +0200 |
commit | a779d38ccf558576ab911e8ca0d66bbd92fcaba9 (patch) | |
tree | cafa4d0ffa549150e128dfc0abbb5b53a3c1d96f /drivers/net/mv643xx_eth.c | |
parent | c9df406f3138265193f5e8d7b7fe85dfbbbd3ac4 (diff) | |
download | linux-stable-a779d38ccf558576ab911e8ca0d66bbd92fcaba9.tar.gz linux-stable-a779d38ccf558576ab911e8ca0d66bbd92fcaba9.tar.bz2 linux-stable-a779d38ccf558576ab911e8ca0d66bbd92fcaba9.zip |
mv643xx_eth: trim unnecessary includes
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Acked-by: Dale Farnsworth <dale@farnsworth.org>
Diffstat (limited to 'drivers/net/mv643xx_eth.c')
-rw-r--r-- | drivers/net/mv643xx_eth.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/drivers/net/mv643xx_eth.c b/drivers/net/mv643xx_eth.c index 835b85d30bc6..f6ff30ed6377 100644 --- a/drivers/net/mv643xx_eth.c +++ b/drivers/net/mv643xx_eth.c @@ -34,33 +34,25 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + #include <linux/init.h> #include <linux/dma-mapping.h> #include <linux/in.h> -#include <linux/ip.h> #include <linux/tcp.h> #include <linux/udp.h> #include <linux/etherdevice.h> - -#include <linux/bitops.h> #include <linux/delay.h> #include <linux/ethtool.h> #include <linux/platform_device.h> - #include <linux/module.h> #include <linux/kernel.h> #include <linux/spinlock.h> #include <linux/workqueue.h> #include <linux/mii.h> - #include <linux/mv643xx_eth.h> - #include <asm/io.h> #include <asm/types.h> -#include <asm/pgtable.h> #include <asm/system.h> -#include <asm/delay.h> -#include <asm/dma-mapping.h> static char mv643xx_driver_name[] = "mv643xx_eth"; static char mv643xx_driver_version[] = "1.0"; |