diff options
| author | Patrick Delaunay <[email protected]> | 2021-04-27 11:02:19 +0200 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2021-07-06 10:38:03 -0600 |
| commit | b953ec2bca1ebe059366e870eb4bec5e7af9c36b (patch) | |
| tree | 7068f05d7cbf19465df4a6c87b29a3599c5de654 /drivers/axi | |
| parent | 85f718f64d65390f385111e57cfa017abd12879d (diff) | |
dm: define LOG_CATEGORY for all uclass
Define LOG_CATEGORY for all uclass to allow filtering with
log command.
Signed-off-by: Patrick Delaunay <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'drivers/axi')
| -rw-r--r-- | drivers/axi/axi-emul-uclass.c | 2 | ||||
| -rw-r--r-- | drivers/axi/axi-uclass.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/drivers/axi/axi-emul-uclass.c b/drivers/axi/axi-emul-uclass.c index b28351f1adb..793336d8c47 100644 --- a/drivers/axi/axi-emul-uclass.c +++ b/drivers/axi/axi-emul-uclass.c @@ -4,6 +4,8 @@ * Mario Six, Guntermann & Drunck GmbH, [email protected] */ +#define LOG_CATEGORY UCLASS_AXI_EMUL + #include <common.h> #include <axi.h> #include <dm.h> diff --git a/drivers/axi/axi-uclass.c b/drivers/axi/axi-uclass.c index af8acd9f88b..afb4844ecbd 100644 --- a/drivers/axi/axi-uclass.c +++ b/drivers/axi/axi-uclass.c @@ -4,6 +4,8 @@ * Mario Six, Guntermann & Drunck GmbH, [email protected] */ +#define LOG_CATEGORY UCLASS_AXI + #include <common.h> #include <dm.h> #include <axi.h> |
