diff options
author | Tom Rini <trini@konsulko.com> | 2021-01-13 09:44:47 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-01-13 09:44:47 -0500 |
commit | 13f9166c8a233f150ffea054086dab671d3f5028 (patch) | |
tree | 5f5438c1a1fca7fc7fcbb163a35c6e8e873df766 /drivers/misc/stm32_rcc.c | |
parent | 9b79c085e128421ca2acb44c954e5612ac1323ac (diff) | |
parent | 7ccaa31380a4abb2b23718008a54fe2917db8edf (diff) | |
download | u-boot-WIP/13Jan2021.zip u-boot-WIP/13Jan2021.tar.gz u-boot-WIP/13Jan2021.tar.bz2 |
Merge tag 'u-boot-stm32-20210113' of https://gitlab.denx.de/u-boot/custodians/u-boot-stmWIP/13Jan2021
- Enable logging features for stm32mp15 boards
- Update MAINTAINERS emails for STI and STM32
- Activate OF_LIVE for ST stm32mp15 boards
- Switch to MCO2 for PHY 50 MHz clock for DHCOM boards
- Correction in stm32prog command on uart: always flush DFU on start command
- Update USB-C power detection algorithm on DK boards
Diffstat (limited to 'drivers/misc/stm32_rcc.c')
-rw-r--r-- | drivers/misc/stm32_rcc.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/misc/stm32_rcc.c b/drivers/misc/stm32_rcc.c index 8627545..f14d6e2 100644 --- a/drivers/misc/stm32_rcc.c +++ b/drivers/misc/stm32_rcc.c @@ -4,6 +4,8 @@ * Author(s): Patrice Chotard, <patrice.chotard@foss.st.com> for STMicroelectronics. */ +#define LOG_CATEGORY UCLASS_NOP + #include <common.h> #include <dm.h> #include <log.h> @@ -45,14 +47,14 @@ static int stm32_rcc_bind(struct udevice *dev) (struct stm32_rcc_clk *)dev_get_driver_data(dev); int ret; - debug("%s(dev=%p)\n", __func__, dev); + dev_dbg(dev, "RCC bind\n"); drv = lists_driver_lookup_name(rcc_clk->drv_name); if (!drv) { - debug("Cannot find driver '%s'\n", rcc_clk->drv_name); + dev_err(dev, "Cannot find driver '%s'\n", rcc_clk->drv_name); return -ENOENT; } - ret = device_bind_with_driver_data(dev, drv, rcc_clk->drv_name, + ret = device_bind_with_driver_data(dev, drv, dev->name, rcc_clk->soc, dev_ofnode(dev), &child); @@ -65,7 +67,7 @@ static int stm32_rcc_bind(struct udevice *dev) return -ENOENT; } - return device_bind_with_driver_data(dev, drv, "stm32_rcc_reset", + return device_bind_with_driver_data(dev, drv, dev->name, rcc_clk->soc, dev_ofnode(dev), &child); } |