mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-29 23:54:26 +00:00
500fac1735
(build error has been fixed - juhosg) Signed-off-by: Arnaud Lacombe <lacombar@gmail.com> SVN-Revision: 23975
20 lines
477 B
C
20 lines
477 B
C
/*
|
|
* Platform data definition for the Vitesse VSC7385 ethernet switch driver
|
|
*
|
|
* Copyright (C) 2009 Gabor Juhos <juhosg@openwrt.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 as published
|
|
* by the Free Software Foundation.
|
|
*/
|
|
|
|
struct vsc7385_platform_data {
|
|
void (*reset)(void);
|
|
char *ucode_name;
|
|
struct {
|
|
u32 tx_ipg:5;
|
|
u32 bit2:1;
|
|
u32 clk_sel:3;
|
|
} mac_cfg;
|
|
};
|