no-op.txt 378 B

12345678910111213141516
  1. NOP PHY driver
  2. This driver is used to stub PHY operations in a driver (USB, SATA).
  3. This is useful when the 'client' driver (USB, SATA, ...) uses the PHY framework
  4. and there is no actual PHY harwdare to drive.
  5. Required properties:
  6. - compatible : must contain "nop-phy"
  7. - #phy-cells : must contain <0>
  8. Example:
  9. nop_phy {
  10. compatible = "nop-phy";
  11. #phy-cells = <0>;
  12. };