diff options
author | Tom Rini <trini@konsulko.com> | 2021-07-07 13:34:42 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-07-07 13:34:42 -0400 |
commit | 7e58a3a148fb94e9ce09fb48d0ddd75c20ee7df9 (patch) | |
tree | 6a4edadac675129fe33da72bb6aa863b7e57f2e1 /drivers/core/root.c | |
parent | 5b8a83551d339736af92c43524ed0e1ba01122af (diff) | |
parent | 880e4768c20b99b1f9a50f35c180f8522dd82c9a (diff) |
Merge tag 'dm-pull-6jul21' of https://source.denx.de/u-boot/custodians/u-boot-dm
various minor sandbox improvements
Diffstat (limited to 'drivers/core/root.c')
-rw-r--r-- | drivers/core/root.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/core/root.c b/drivers/core/root.c index fe0562cd6f6..78eee082c95 100644 --- a/drivers/core/root.c +++ b/drivers/core/root.c @@ -6,6 +6,8 @@ * Pavel Herrmann <morpheus.ibis@gmail.com> */ +#define LOG_CATEGORY UCLASS_ROOT + #include <common.h> #include <errno.h> #include <fdtdec.h> @@ -111,9 +113,6 @@ void fix_uclass(void) entry->init += gd->reloc_off; if (entry->destroy) entry->destroy += gd->reloc_off; - /* FIXME maybe also need to fix these ops */ - if (entry->ops) - entry->ops += gd->reloc_off; } } |