projects
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e6f498e
)
nvmxip: Drop the message on probe
author
Simon Glass
<sjg@chromium.org>
Sun, 1 Sep 2024 22:26:12 +0000
(16:26 -0600)
committer
Tom Rini
<trini@konsulko.com>
Wed, 18 Sep 2024 19:00:59 +0000
(13:00 -0600)
We should not need to announce this device. Drop the message.
Signed-off-by: Simon Glass <sjg@chromium.org>
drivers/mtd/nvmxip/nvmxip-uclass.c
patch
|
blob
|
history
diff --git
a/drivers/mtd/nvmxip/nvmxip-uclass.c
b/drivers/mtd/nvmxip/nvmxip-uclass.c
index 254f04e0b9990b515f5aaf2e8fd4d8425310f8e0..58e8c3fb74b2aa6f67891eedfc31ab667b17163f 100644
(file)
--- a/
drivers/mtd/nvmxip/nvmxip-uclass.c
+++ b/
drivers/mtd/nvmxip/nvmxip-uclass.c
@@
-47,7
+47,8
@@
int nvmxip_probe(struct udevice *udev)
return ret;
}
- log_info("[%s]: the block device %s ready for use\n", udev->name, bdev_name);
+ log_debug("[%s]: the block device %s ready for use\n", udev->name,
+ bdev_name);
return 0;
}