#ifndef _AM335x_PHY_CONTROL_H_ #define _AM335x_PHY_CONTROL_H_ struct phy_control { void (*phy_power)(struct phy_control *phy_ctrl, u32 id, enum usb_dr_mode dr_mode, bool on); void (*phy_wkup)(struct phy_control *phy_ctrl, u32 id, bool on); }; static inline void phy_ctrl_power(struct phy_control *phy_ctrl, u32 id, enum usb_dr_mode dr_mode, bool on) { phy_ctrl->phy_power(phy_ctrl, id, dr_mode, on); } static inline void phy_ctrl_wkup(struct phy_control *phy_ctrl, u32 id, bool on) { phy_ctrl->phy_wkup(phy_ctrl, id, on); } struct phy_control *am335x_get_phy_control(struct device *dev); #endif it Git repository'/>
summaryrefslogtreecommitdiff
path: root/sound/soc/intel/skylake/Makefile
diff options
context:
space:
mode:
authorHelge Deller <deller@gmx.de>2017-01-03 22:55:50 +0100
committerHelge Deller <deller@gmx.de>2017-01-28 21:54:21 +0100
commit83b5d1e3d3013dbf90645a5d07179d018c8243fa (patch)
tree831d7125df83a827408def371df72b1360e94078 /sound/soc/intel/skylake/Makefile
parentd56a5ca366e785f463b4782f65daac883612a2b2 (diff)
parisc, parport_gsc: Fixes for printk continuation lines
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'sound/soc/intel/skylake/Makefile')