diff options
author | Dario Binacchi <dariobin@libero.it> | 2020-12-30 00:16:28 +0100 |
---|---|---|
committer | Lokesh Vutla <lokeshvutla@ti.com> | 2021-01-12 10:58:29 +0530 |
commit | e58e5067fb318958791aed5baf2d21e3d78653d7 (patch) | |
tree | d8094238f3bdc712230a653284bbd8bd60ca91ef /arch | |
parent | ff94c15a3cf1ded3b851c65bb86168f6428e0d06 (diff) | |
download | u-boot-e58e5067fb318958791aed5baf2d21e3d78653d7.zip u-boot-e58e5067fb318958791aed5baf2d21e3d78653d7.tar.gz u-boot-e58e5067fb318958791aed5baf2d21e3d78653d7.tar.bz2 |
video: omap: drop domain clock enabling by SOC api
Enabling the domain clock is performed by the sysc interconnect target
module driver during the video device probing.
Signed-off-by: Dario Binacchi <dariobin@libero.it>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-omap2/am33xx/clock_am33xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/am33xx/clock_am33xx.c b/arch/arm/mach-omap2/am33xx/clock_am33xx.c index 2427933..cf71192 100644 --- a/arch/arm/mach-omap2/am33xx/clock_am33xx.c +++ b/arch/arm/mach-omap2/am33xx/clock_am33xx.c @@ -226,7 +226,7 @@ void enable_basic_clocks(void) &cmper->usb0clkctrl, &cmper->emiffwclkctrl, &cmper->emifclkctrl, -#if CONFIG_IS_ENABLED(AM335X_LCD) +#if CONFIG_IS_ENABLED(AM335X_LCD) && !CONFIG_IS_ENABLED(DM_VIDEO) &cmper->lcdclkctrl, &cmper->lcdcclkstctrl, #endif |