summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2021-02-22 09:12:04 -0500
committerTom Rini <trini@konsulko.com>2021-02-22 09:12:04 -0500
commitbced796e2dadc708ce213170d36be7f0428618a1 (patch)
tree3e6159cf6178afe36061fede5c85de3fabd95f7e /drivers
parenta3ddc776fa2dfc57fba6ec44f95093156717eb1e (diff)
parentd67da448ff2d433f3ad651314a50b9ea42b2e2ae (diff)
Merge tag 'ti-v2021.04-rc3' of https://gitlab.denx.de/u-boot/custodians/u-boot-ti
- Fix ethernet on J721e - Sync am335x DT nodes from Linux 5.9-rc7 - Minor Clock fixes
Diffstat (limited to 'drivers')
-rw-r--r--drivers/clk/ti/clk-ctrl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/ti/clk-ctrl.c b/drivers/clk/ti/clk-ctrl.c
index 3c6195b208..8ac085ee4f 100644
--- a/drivers/clk/ti/clk-ctrl.c
+++ b/drivers/clk/ti/clk-ctrl.c
@@ -49,7 +49,7 @@ static int clk_ti_ctrl_disable(struct clk *clk)
}
clk_modules[0] = (u32 *)(offs);
- dev_dbg(clk->dev, "module address=%p\n", clk_modules[0]);
+ dev_dbg(clk->dev, "disable module @ %p\n", clk_modules[0]);
do_disable_clocks(NULL, clk_modules, 1);
return 0;
}
@@ -69,7 +69,7 @@ static int clk_ti_ctrl_enable(struct clk *clk)
}
clk_modules[0] = (u32 *)(offs);
- dev_dbg(clk->dev, "module address=%p\n", clk_modules[0]);
+ dev_dbg(clk->dev, "enable module @ %p\n", clk_modules[0]);
do_enable_clocks(NULL, clk_modules, 1);
return 0;
}