phy-sun4i-usb.h 429 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2015 Hans de Goede <[email protected]>
  4. */
  5. #ifndef PHY_SUN4I_USB_H_
  6. #define PHY_SUN4I_USB_H_
  7. #include "phy.h"
  8. /**
  9. * sun4i_usb_phy_set_squelch_detect() - Enable/disable squelch detect
  10. * @phy: reference to a sun4i usb phy
  11. * @enabled: wether to enable or disable squelch detect
  12. */
  13. void sun4i_usb_phy_set_squelch_detect(struct phy *phy, bool enabled);
  14. #endif