cregit-Linux how code gets into the kernel

Release 4.7 drivers/usb/phy/phy-am335x-control.h

Directory: drivers/usb/phy
#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); }

Contributors

PersonTokensPropCommitsCommitProp
sebastian andrzej siewiorsebastian andrzej siewior2982.86%150.00%
bin liubin liu617.14%150.00%
Total35100.00%2100.00%


static inline void phy_ctrl_wkup(struct phy_control *phy_ctrl, u32 id, bool on) { phy_ctrl->phy_wkup(phy_ctrl, id, on); }

Contributors

PersonTokensPropCommitsCommitProp
sebastian andrzej siewiorsebastian andrzej siewior29100.00%1100.00%
Total29100.00%1100.00%

struct phy_control *am335x_get_phy_control(struct device *dev); #endif

Overall Contributors

PersonTokensPropCommitsCommitProp
sebastian andrzej siewiorsebastian andrzej siewior11892.19%150.00%
bin liubin liu107.81%150.00%
Total128100.00%2100.00%
Directory: drivers/usb/phy
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}