aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/usb/musb.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/usb/musb.h')
-rw-r--r--include/linux/usb/musb.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/usb/musb.h b/include/linux/usb/musb.h
index 2387f9fc8138..eb505250940a 100644
--- a/include/linux/usb/musb.h
+++ b/include/linux/usb/musb.h
@@ -3,7 +3,7 @@
3 * Inventra (Multidrop) Highspeed Dual-Role Controllers: (M)HDRC. 3 * Inventra (Multidrop) Highspeed Dual-Role Controllers: (M)HDRC.
4 * 4 *
5 * Board initialization should put one of these into dev->platform_data, 5 * Board initialization should put one of these into dev->platform_data,
6 * probably on some platform_device named "musb_hdrc". It encapsulates 6 * probably on some platform_device named "musb-hdrc". It encapsulates
7 * key configuration differences between boards. 7 * key configuration differences between boards.
8 */ 8 */
9 9
@@ -120,14 +120,14 @@ struct musb_hdrc_platform_data {
120 /* Power the device on or off */ 120 /* Power the device on or off */
121 int (*set_power)(int state); 121 int (*set_power)(int state);
122 122
123 /* Turn device clock on or off */
124 int (*set_clock)(struct clk *clock, int is_on);
125
126 /* MUSB configuration-specific details */ 123 /* MUSB configuration-specific details */
127 struct musb_hdrc_config *config; 124 struct musb_hdrc_config *config;
128 125
129 /* Architecture specific board data */ 126 /* Architecture specific board data */
130 void *board_data; 127 void *board_data;
128
129 /* Platform specific struct musb_ops pointer */
130 const void *platform_ops;
131}; 131};
132 132
133 133