]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/fec.h
mm/hotplug: invalid PFNs from pfn_to_online_page()
[mirror_ubuntu-bionic-kernel.git] / include / linux / fec.h
CommitLineData
5eb32bd0
BS
1/* include/linux/fec.h
2 *
3 * Copyright (c) 2009 Orex Computed Radiography
4 * Baruch Siach <baruch@tkos.co.il>
5 *
49da97dc
SG
6 * Copyright (C) 2010 Freescale Semiconductor, Inc.
7 *
5eb32bd0
BS
8 * Header file for the FEC platform data
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14#ifndef __LINUX_FEC_H__
15#define __LINUX_FEC_H__
16
17#include <linux/phy.h>
18
19struct fec_platform_data {
20 phy_interface_t phy;
49da97dc 21 unsigned char mac[ETH_ALEN];
de40ed31 22 void (*sleep_mode_enable)(int enabled);
5eb32bd0
BS
23};
24
25#endif