diff options
| author | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-04 19:47:13 -0500 |
|---|---|---|
| committer | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-04 19:47:13 -0500 |
| commit | c71c03bda1e86c9d5198c5d83f712e695c4f2a1e (patch) | |
| tree | ecb166cb3e2b7e2adb3b5e292245fefd23381ac8 /include/linux/bfin_mac.h | |
| parent | ea53c912f8a86a8567697115b6a0d8152beee5c8 (diff) | |
| parent | 6a00f206debf8a5c8899055726ad127dbeeed098 (diff) | |
Merge branch 'mpi-master' into wip-k-fmlpwip-k-fmlp
Conflicts:
litmus/sched_cedf.c
Diffstat (limited to 'include/linux/bfin_mac.h')
| -rw-r--r-- | include/linux/bfin_mac.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/include/linux/bfin_mac.h b/include/linux/bfin_mac.h new file mode 100644 index 000000000000..a69554ef8476 --- /dev/null +++ b/include/linux/bfin_mac.h | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | /* | ||
| 2 | * Blackfin On-Chip MAC Driver | ||
| 3 | * | ||
| 4 | * Copyright 2004-2010 Analog Devices Inc. | ||
| 5 | * | ||
| 6 | * Enter bugs at http://blackfin.uclinux.org/ | ||
| 7 | * | ||
| 8 | * Licensed under the GPL-2 or later. | ||
| 9 | */ | ||
| 10 | |||
| 11 | #ifndef _LINUX_BFIN_MAC_H_ | ||
| 12 | #define _LINUX_BFIN_MAC_H_ | ||
| 13 | |||
| 14 | #include <linux/phy.h> | ||
| 15 | |||
| 16 | struct bfin_phydev_platform_data { | ||
| 17 | unsigned short addr; | ||
| 18 | int irq; | ||
| 19 | }; | ||
| 20 | |||
| 21 | struct bfin_mii_bus_platform_data { | ||
| 22 | int phydev_number; | ||
| 23 | struct bfin_phydev_platform_data *phydev_data; | ||
| 24 | const unsigned short *mac_peripherals; | ||
| 25 | int phy_mode; | ||
| 26 | unsigned int phy_mask; | ||
| 27 | unsigned short vlan1_mask, vlan2_mask; | ||
| 28 | }; | ||
| 29 | |||
| 30 | #endif | ||
