gpio: rcar: Fix runtime PM imbalance on error
[linux/fpc-iii.git] / drivers / net / ethernet / ti / cpsw.h
blob35d602f03281c1147bfea84a14f559a9cbd30bd2
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Texas Instruments Ethernet Switch Driver
4 * Copyright (C) 2013 Texas Instruments
6 */
7 #ifndef __CPSW_H__
8 #define __CPSW_H__
10 #include <linux/if_ether.h>
11 #include <linux/phy.h>
13 #define mac_hi(mac) (((mac)[0] << 0) | ((mac)[1] << 8) | \
14 ((mac)[2] << 16) | ((mac)[3] << 24))
15 #define mac_lo(mac) (((mac)[4] << 0) | ((mac)[5] << 8))
17 #if IS_ENABLED(CONFIG_TI_CPSW_PHY_SEL)
18 void cpsw_phy_sel(struct device *dev, phy_interface_t phy_mode, int slave);
19 #else
20 static inline
21 void cpsw_phy_sel(struct device *dev, phy_interface_t phy_mode, int slave)
23 #endif
24 int ti_cm_get_macid(struct device *dev, int slave, u8 *mac_addr);
26 #endif /* __CPSW_H__ */