diff options
| author | Felipe Balbi <balbi@ti.com> | 2010-12-02 09:51:00 +0200 | 
|---|---|---|
| committer | Felipe Balbi <balbi@ti.com> | 2010-12-10 10:21:24 +0200 | 
| commit | 3b7029670d39d22f288ece95254e9ba5ceddd6ba (patch) | |
| tree | 46f8a0d4991ca042e1de3fd8e51cca9d24400a32 | |
| parent | f7ec94370f417fedad4db1054228ef958d48b926 (diff) | |
| download | olio-linux-3.10-3b7029670d39d22f288ece95254e9ba5ceddd6ba.tar.xz olio-linux-3.10-3b7029670d39d22f288ece95254e9ba5ceddd6ba.zip  | |
usb: musb: mark ->set_clock deprecated
... we will completely drop that need by
moving clock handling to platform glue
layer. Marking as deprecated will allow
us to catch all users easily.
Signed-off-by: Felipe Balbi <balbi@ti.com>
| -rw-r--r-- | include/linux/usb/musb.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/usb/musb.h b/include/linux/usb/musb.h index 6f4e5014cf5..0b72b574164 100644 --- a/include/linux/usb/musb.h +++ b/include/linux/usb/musb.h @@ -119,7 +119,7 @@ struct musb_hdrc_platform_data {  	int		(*set_power)(int state);  	/* Turn device clock on or off */ -	int		(*set_clock)(struct clk *clock, int is_on); +	int		(*set_clock)(struct clk *clock, int is_on) __deprecated;  	/* MUSB configuration-specific details */  	struct musb_hdrc_config	*config;  |