aboutsummaryrefslogtreecommitdiff
path: root/drivers/core
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/core')
-rw-r--r--drivers/core/root.c5
-rw-r--r--drivers/core/simple-bus.c2
2 files changed, 4 insertions, 3 deletions
diff --git a/drivers/core/root.c b/drivers/core/root.c
index fe0562c..78eee08 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;
}
}
diff --git a/drivers/core/simple-bus.c b/drivers/core/simple-bus.c
index 18f52d2..abc55c2 100644
--- a/drivers/core/simple-bus.c
+++ b/drivers/core/simple-bus.c
@@ -3,6 +3,8 @@
* Copyright (c) 2014 Google, Inc
*/
+#define LOG_CATEGORY UCLASS_SIMPLE_BUS
+
#include <common.h>
#include <asm/global_data.h>
#include <dm.h>