mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
b0ba512e25
Modify bcmgenet driver so that it can be used on Broadcom 7xxx MIPS-based STB platforms without a device tree. Signed-off-by: Petri Gynther <pgynther@google.com> Acked-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
18 lines
363 B
C
18 lines
363 B
C
#ifndef __LINUX_PLATFORM_DATA_BCMGENET_H__
|
|
#define __LINUX_PLATFORM_DATA_BCMGENET_H__
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/if_ether.h>
|
|
#include <linux/phy.h>
|
|
|
|
struct bcmgenet_platform_data {
|
|
bool mdio_enabled;
|
|
phy_interface_t phy_interface;
|
|
int phy_address;
|
|
int phy_speed;
|
|
int phy_duplex;
|
|
u8 mac_address[ETH_ALEN];
|
|
int genet_version;
|
|
};
|
|
|
|
#endif
|