lantiq: Change the data-type of mac address in ETOP driver

Make it consistent with the net_device struct and the xrx200 driver

Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>

SVN-Revision: 46219
This commit is contained in:
John Crispin 2015-07-07 13:44:12 +00:00
parent 4c8227539e
commit fa9e259729
2 changed files with 1 additions and 10 deletions

View file

@ -170,7 +170,7 @@ Signed-off-by: John Crispin <blogic@openwrt.org>
+ int tx_irq; + int tx_irq;
+ int rx_irq; + int rx_irq;
+ +
+ const void *mac; + unsigned char mac[6];
+ int mii_mode; + int mii_mode;
spinlock_t lock; spinlock_t lock;

View file

@ -590,15 +590,6 @@ Signed-off-by: John Crispin <blogic@openwrt.org>
+device_initcall(of_ralink_eeprom_init); +device_initcall(of_ralink_eeprom_init);
--- a/drivers/net/ethernet/lantiq_etop.c --- a/drivers/net/ethernet/lantiq_etop.c
+++ b/drivers/net/ethernet/lantiq_etop.c +++ b/drivers/net/ethernet/lantiq_etop.c
@@ -161,7 +161,7 @@ struct ltq_etop_priv {
int tx_irq;
int rx_irq;
- const void *mac;
+ void *mac;
int mii_mode;
spinlock_t lock;
@@ -840,7 +840,11 @@ ltq_etop_init(struct net_device *dev) @@ -840,7 +840,11 @@ ltq_etop_init(struct net_device *dev)
if (err) if (err)
goto err_hw; goto err_hw;