Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / include / linux / fec.h
blob9aaf53f07269a92b1f9067de50bc88be9ddf9284
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /* include/linux/fec.h
4 * Copyright (c) 2009 Orex Computed Radiography
5 * Baruch Siach <baruch@tkos.co.il>
7 * Copyright (C) 2010 Freescale Semiconductor, Inc.
9 * Header file for the FEC platform data
11 #ifndef __LINUX_FEC_H__
12 #define __LINUX_FEC_H__
14 #include <linux/phy.h>
16 struct fec_platform_data {
17 phy_interface_t phy;
18 unsigned char mac[ETH_ALEN];
19 void (*sleep_mode_enable)(int enabled);
22 #endif