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