Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

usb: phy: change some comments

- Replace all "transceiver" with "phy"
- Replace one "OTG controller" with "phy"

Signed-off-by: Peter Chen <peter.chen@freescale.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>

authored by

Peter Chen and committed by
Felipe Balbi
58efd4b0 5cd22f80

+4 -4
+4 -4
include/linux/usb/phy.h
··· 63 63 struct usb_phy; 64 64 struct usb_otg; 65 65 66 - /* for transceivers connected thru an ULPI interface, the user must 66 + /* for phys connected thru an ULPI interface, the user must 67 67 * provide access ops 68 68 */ 69 69 struct usb_phy_io_ops { ··· 92 92 u16 port_status; 93 93 u16 port_change; 94 94 95 - /* to support controllers that have multiple transceivers */ 95 + /* to support controllers that have multiple phys */ 96 96 struct list_head head; 97 97 98 - /* initialize/shutdown the OTG controller */ 98 + /* initialize/shutdown the phy */ 99 99 int (*init)(struct usb_phy *x); 100 100 void (*shutdown)(struct usb_phy *x); 101 101 ··· 106 106 int (*set_power)(struct usb_phy *x, 107 107 unsigned mA); 108 108 109 - /* Set transceiver into suspend mode */ 109 + /* Set phy into suspend mode */ 110 110 int (*set_suspend)(struct usb_phy *x, 111 111 int suspend); 112 112