ramips: move ramips_eth_platform_data into a separate file
authorGabor Juhos <juhosg@openwrt.org>
Mon, 26 Oct 2009 17:17:45 +0000 (17:17 +0000)
committerGabor Juhos <juhosg@openwrt.org>
Mon, 26 Oct 2009 17:17:45 +0000 (17:17 +0000)
SVN-Revision: 18174

target/linux/ramips/files/arch/mips/include/asm/mach-ralink/eth.h
target/linux/ramips/files/arch/mips/include/asm/mach-ralink/ramips_eth_platform.h [new file with mode: 0644]
target/linux/ramips/files/arch/mips/ralink/rt305x/devices.c
target/linux/ramips/files/drivers/net/ramips.c

index c228f6f34f3b890b70747f1041f618352ad10533..9ddcbcd489bc2e1ee28ddea95a933e05a47feabf 100644 (file)
@@ -186,13 +186,6 @@ struct ramips_tx_dma {
        unsigned int txd4;
 };
 
-struct ramips_eth_platform_data
-{
-       unsigned char mac[6];
-       void (*reset_fe)(void);
-       int min_pkt_len;
-};
-
 struct raeth_priv
 {
        unsigned int                    phy_rx;
diff --git a/target/linux/ramips/files/arch/mips/include/asm/mach-ralink/ramips_eth_platform.h b/target/linux/ramips/files/arch/mips/include/asm/mach-ralink/ramips_eth_platform.h
new file mode 100644 (file)
index 0000000..a60a572
--- /dev/null
@@ -0,0 +1,30 @@
+/*
+ *   This program is free software; you can redistribute it and/or modify
+ *   it under the terms of the GNU General Public License as published by
+ *   the Free Software Foundation; version 2 of the License
+ *
+ *   This program is distributed in the hope that it will be useful,
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *   GNU General Public License for more details.
+ *
+ *   You should have received a copy of the GNU General Public License
+ *   along with this program; if not, write to the Free Software
+ *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
+ *
+ *   based on Ralink SDK3.3
+ *   Copyright (C) 2009 John Crispin <blogic@openwrt.org>
+ */
+
+#ifndef _RAMIPS_ETH_PLATFORM_H
+#define _RAMIPS_ETH_PLATFORM_H
+
+struct ramips_eth_platform_data
+{
+       unsigned char mac[6];
+       void (*reset_fe)(void);
+       int min_pkt_len;
+};
+
+#endif /* _RAMIPS_ETH_PLATFORM_H */
+
index 4956277d864f4d85cfffff127021621384b912c2..18850fda97622923bf9c2bc1a6096a9a2b7e339a 100644 (file)
@@ -19,7 +19,7 @@
 #include <asm/mach-ralink/rt305x_regs.h>
 #include "devices.h"
 
-#include <eth.h>
+#include <ramips_eth_platform.h>
 
 static struct resource rt305x_flash0_resources[] = {
        {
index fa09caa7833a08b903a1cea1cdf3735e3e3f0ace..0565692e5a376b95eed24896ff207ec3aa71ebb6 100644 (file)
@@ -25,6 +25,7 @@
 #include <linux/platform_device.h>
 
 #include <eth.h>
+#include <ramips_eth_platform.h>
 
 #define TX_TIMEOUT (20 * HZ / 100)
 #define        MAX_RX_LENGTH   1500