git: a4e1bf22796a - stable/13 - mmc_fdt_parse: remove redundant bootverbose check

From: Andriy Gapon <avg_at_FreeBSD.org>
Date: Sat, 17 Feb 2024 19:22:35 UTC
The branch stable/13 has been updated by avg:

URL: https://cgit.FreeBSD.org/src/commit/?id=a4e1bf22796a070f3fbf43d387277f056e59bedc

commit a4e1bf22796a070f3fbf43d387277f056e59bedc
Author:     Andriy Gapon <avg@FreeBSD.org>
AuthorDate: 2021-09-24 16:26:06 +0000
Commit:     Andriy Gapon <avg@FreeBSD.org>
CommitDate: 2024-02-17 19:22:08 +0000

    mmc_fdt_parse: remove redundant bootverbose check
    
    (cherry picked from commit 43ca38eb59ff194fb6d8ad589e74147d94717bf4)
---
 sys/dev/mmc/mmc_fdt_helpers.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/mmc/mmc_fdt_helpers.c b/sys/dev/mmc/mmc_fdt_helpers.c
index d53216e19da3..809b59c28167 100644
--- a/sys/dev/mmc/mmc_fdt_helpers.c
+++ b/sys/dev/mmc/mmc_fdt_helpers.c
@@ -67,7 +67,7 @@ mmc_fdt_parse(device_t dev, phandle_t node, struct mmc_helper *helper,
 			device_printf(dev, "vmmc-supply regulator found\n");
 	}
 	if (regulator_get_by_ofw_property(dev, 0, "vqmmc-supply",
-	    &helper->vqmmc_supply) == 0 && bootverbose) {
+	    &helper->vqmmc_supply) == 0) {
 		if (bootverbose)
 			device_printf(dev, "vqmmc-supply regulator found\n");
 	}