1 /* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0-or-later */ 2 /* 3 * Copyright 2008 - 2015 Freescale Semiconductor Inc. 4 */ 5 6 #ifndef __MEMAC_H 7 #define __MEMAC_H 8 9 #include "fman_mac.h" 10 11 #include <linux/netdevice.h> 12 #include <linux/phy_fixed.h> 13 14 struct mac_device; 15 16 int memac_initialization(struct mac_device *mac_dev, 17 struct device_node *mac_node, 18 struct fman_mac_params *params); 19 20 #endif /* __MEMAC_H */ 21