aboutsummaryrefslogtreecommitdiff
path: root/common/log.c
diff options
context:
space:
mode:
authorSimon Glass2023-07-15 21:38:49 -0600
committerBin Meng2023-07-17 17:12:07 +0800
commitf98caa6ae3864451b38c52c6be17e6e53b6685ac (patch)
tree16a6381bb908dc253312eccef4e7c4d5c316201e /common/log.c
parentd2e7972d7be6dc0078072b01e93c1502c4044e6a (diff)
log: Tidy up an ambiguous comment
Add a bit more detail so it is clear that multiple devices are supported, but only one per driver. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'common/log.c')
-rw-r--r--common/log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/log.c b/common/log.c
index 6f02a25c593..b2de57fcb3b 100644
--- a/common/log.c
+++ b/common/log.c
@@ -437,7 +437,7 @@ int log_init(void)
/*
* We cannot add runtime data to the driver since it is likely stored
* in rodata. Instead, set up a 'device' corresponding to each driver.
- * We only support having a single device.
+ * We only support having a single device for each driver.
*/
INIT_LIST_HEAD((struct list_head *)&gd->log_head);
while (drv < end) {