repo.or.cz
/
cris-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[cris-mirror.git]
/
include
/
linux
/
platform_data
/
bcmgenet.h
blob
26af54321958e097f4a7b7e92a711d7c73cd0dce
1
#ifndef __LINUX_PLATFORM_DATA_BCMGENET_H__
2
#define __LINUX_PLATFORM_DATA_BCMGENET_H__
3
4
#include <linux/types.h>
5
#include <linux/if_ether.h>
6
#include <linux/phy.h>
7
8
struct
bcmgenet_platform_data
{
9
bool
mdio_enabled
;
10
phy_interface_t phy_interface
;
11
int
phy_address
;
12
int
phy_speed
;
13
int
phy_duplex
;
14
u8 mac_address
[
ETH_ALEN
];
15
int
genet_version
;
16
};
17
18
#endif