]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
nvmxip: Drop the message on probe
authorSimon Glass <sjg@chromium.org>
Sun, 1 Sep 2024 22:26:12 +0000 (16:26 -0600)
committerTom 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

index 254f04e0b9990b515f5aaf2e8fd4d8425310f8e0..58e8c3fb74b2aa6f67891eedfc31ab667b17163f 100644 (file)
@@ -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;
 }