Merge 3.9-rc4 into driver-core-next
This is to fix up a build problem with a wireless driver due to the dynamic-debug patches in this branch. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
@@ -110,7 +110,7 @@ config AB8500_USB
|
||||
|
||||
config FSL_USB2_OTG
|
||||
bool "Freescale USB OTG Transceiver Driver"
|
||||
depends on USB_EHCI_FSL && USB_GADGET_FSL_USB2 && USB_SUSPEND
|
||||
depends on USB_EHCI_FSL && USB_FSL_USB2 && USB_SUSPEND
|
||||
select USB_OTG
|
||||
select USB_OTG_UTILS
|
||||
help
|
||||
|
@@ -240,7 +240,7 @@ static void otg_clock_enable(struct mv_otg *mvotg)
|
||||
unsigned int i;
|
||||
|
||||
for (i = 0; i < mvotg->clknum; i++)
|
||||
clk_enable(mvotg->clk[i]);
|
||||
clk_prepare_enable(mvotg->clk[i]);
|
||||
}
|
||||
|
||||
static void otg_clock_disable(struct mv_otg *mvotg)
|
||||
@@ -248,7 +248,7 @@ static void otg_clock_disable(struct mv_otg *mvotg)
|
||||
unsigned int i;
|
||||
|
||||
for (i = 0; i < mvotg->clknum; i++)
|
||||
clk_disable(mvotg->clk[i]);
|
||||
clk_disable_unprepare(mvotg->clk[i]);
|
||||
}
|
||||
|
||||
static int mv_otg_enable_internal(struct mv_otg *mvotg)
|
||||
|
Reference in New Issue
Block a user