diff options
| author | Sean Anderson <[email protected]> | 2020-10-04 21:39:43 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2020-10-15 18:36:55 -0400 |
| commit | 4d55155f6c11cf1ff3c6ba28af1e4567325623d1 (patch) | |
| tree | 97dc2a0326f81b094e39c693a98199a9285dabd5 | |
| parent | 0f0f4e5feb15a90404aaa78a45c0b9fec9a8efb6 (diff) | |
dm: syscon: Set LOG_CATEGORY
We call log_debug, but do not have a category set.
Signed-off-by: Sean Anderson <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
| -rw-r--r-- | drivers/core/syscon-uclass.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/core/syscon-uclass.c b/drivers/core/syscon-uclass.c index 5be1d527a0a..509b09845ad 100644 --- a/drivers/core/syscon-uclass.c +++ b/drivers/core/syscon-uclass.c @@ -4,6 +4,8 @@ * Written by Simon Glass <[email protected]> */ +#define LOG_CATEGORY UCLASS_SYSCON + #include <common.h> #include <log.h> #include <syscon.h> |
