cpsw.h (552c69b36ebd966186573b9c7a286b390935cce1) | cpsw.h (dba235fa70cbedf7dd64d5763299451be4b9de16) |
---|---|
1/* Texas Instruments Ethernet Switch Driver 2 * 3 * Copyright (C) 2013 Texas Instruments 4 * 5 * This program is free software; you can redistribute it and/or 6 * modify it under the terms of the GNU General Public License 7 * version 2 as published by the Free Software Foundation. 8 * --- 7 unchanged lines hidden (view full) --- 16 17#include <linux/if_ether.h> 18#include <linux/phy.h> 19 20#define mac_hi(mac) (((mac)[0] << 0) | ((mac)[1] << 8) | \ 21 ((mac)[2] << 16) | ((mac)[3] << 24)) 22#define mac_lo(mac) (((mac)[4] << 0) | ((mac)[5] << 8)) 23 | 1/* Texas Instruments Ethernet Switch Driver 2 * 3 * Copyright (C) 2013 Texas Instruments 4 * 5 * This program is free software; you can redistribute it and/or 6 * modify it under the terms of the GNU General Public License 7 * version 2 as published by the Free Software Foundation. 8 * --- 7 unchanged lines hidden (view full) --- 16 17#include <linux/if_ether.h> 18#include <linux/phy.h> 19 20#define mac_hi(mac) (((mac)[0] << 0) | ((mac)[1] << 8) | \ 21 ((mac)[2] << 16) | ((mac)[3] << 24)) 22#define mac_lo(mac) (((mac)[4] << 0) | ((mac)[5] << 8)) 23 |
24#if IS_ENABLED(CONFIG_TI_CPSW_PHY_SEL) |
|
24void cpsw_phy_sel(struct device *dev, phy_interface_t phy_mode, int slave); | 25void cpsw_phy_sel(struct device *dev, phy_interface_t phy_mode, int slave); |
26#else 27static inline 28void cpsw_phy_sel(struct device *dev, phy_interface_t phy_mode, int slave) 29{} 30#endif |
|
25int ti_cm_get_macid(struct device *dev, int slave, u8 *mac_addr); 26 27#endif /* __CPSW_H__ */ | 31int ti_cm_get_macid(struct device *dev, int slave, u8 *mac_addr); 32 33#endif /* __CPSW_H__ */ |