blob: a3381122e68775b712e837d3125e0122c74652d1 [file] [log] [blame]
Jean-Jacques Hiblot3b63db32017-07-24 15:18:15 +02001NOP 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};