diff options
author | Lennert Buytenhek <buytenh@wantstofly.org> | 2005-11-23 12:49:47 +0100 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2005-12-01 02:25:26 -0500 |
commit | 0b85c0ebde63a41d57b6214977ac2752bf5a086f (patch) | |
tree | 3ea968ce6be1c92aa6057958633af6392341b105 /drivers/net/ixp2000/pm3386.h | |
parent | 7ed98bfdea45dbdc66261660357659470935a03a (diff) | |
download | linux-0b85c0ebde63a41d57b6214977ac2752bf5a086f.tar.bz2 |
[PATCH] pm3386: add hook for setting MAC address
When we reset the pm3386, it loses its internally stored MAC addresses
that were programmed into it by the bootloader (and are used by the
hardware for the generation of PAUSE frames.) Add a hook to allow
setting these addresses so that we can program them back by hand.
Signed-off-by: Lennert Buytenhek <buytenh@wantstofly.org>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
Diffstat (limited to 'drivers/net/ixp2000/pm3386.h')
-rw-r--r-- | drivers/net/ixp2000/pm3386.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ixp2000/pm3386.h b/drivers/net/ixp2000/pm3386.h index 55ecb1834219..117f50afcdea 100644 --- a/drivers/net/ixp2000/pm3386.h +++ b/drivers/net/ixp2000/pm3386.h @@ -15,6 +15,7 @@ void pm3386_reset(void); void pm3386_init_port(int port); void pm3386_get_mac(int port, u8 *mac); +void pm3386_set_mac(int port, u8 *mac); void pm3386_get_stats(int port, struct net_device_stats *stats); int pm3386_is_link_up(int port); void pm3386_enable_rx(int port); |