USB: fix up for "usb: misc: onboard_hub: rename to onboard_dev"

interacting with "usb: misc: onboard_usb_hub: Disable the USB hub clock
on failure"

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Link: https://lore.kernel.org/r/20240424161202.7e45e19e@canb.auug.org.au
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Stephen Rothwell 2024-04-24 16:12:02 +10:00 committed by Greg Kroah-Hartman
parent 3f12222a4b
commit 32965a3b82

View File

@ -93,7 +93,7 @@ static int onboard_dev_power_on(struct onboard_dev *onboard_dev)
if (err) {
dev_err(onboard_dev->dev, "failed to enable supplies: %pe\n",
ERR_PTR(err));
return err;
goto disable_clk;
}
fsleep(onboard_dev->pdata->reset_us);
@ -102,6 +102,10 @@ static int onboard_dev_power_on(struct onboard_dev *onboard_dev)
onboard_dev->is_powered_on = true;
return 0;
disable_clk:
clk_disable_unprepare(onboard_dev->clk);
return err;
}
static int onboard_dev_power_off(struct onboard_dev *onboard_dev)