diff options
| author | Simon Glass <[email protected]> | 2024-09-01 16:26:12 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-09-18 13:00:59 -0600 |
| commit | 48fef88f94ef00a697724259e53ca4787ca5f89d (patch) | |
| tree | 6d80c3f1aa54ef0fcc439c917355ac497b502c5e | |
| parent | e6f498e70bec1cec5db81b62d544e9cba3607504 (diff) | |
nvmxip: Drop the message on probe
We should not need to announce this device. Drop the message.
Signed-off-by: Simon Glass <[email protected]>
| -rw-r--r-- | drivers/mtd/nvmxip/nvmxip-uclass.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mtd/nvmxip/nvmxip-uclass.c b/drivers/mtd/nvmxip/nvmxip-uclass.c index 254f04e0b99..58e8c3fb74b 100644 --- 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; } |
