git: cd5038b62ec2 - stable/14 - mmc_fdt_parse: remove redundant bootverbose check

From: Andriy Gapon <avg_at_FreeBSD.org>
Date: Sat, 17 Feb 2024 15:12:24 UTC
The branch stable/14 has been updated by avg:

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

commit cd5038b62ec2a256e5f85c67358f7b73a4d4c22b
Author:     Andriy Gapon <avg@FreeBSD.org>
AuthorDate: 2021-09-24 16:26:06 +0000
Commit:     Andriy Gapon <avg@FreeBSD.org>
CommitDate: 2024-02-17 14:15:11 +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 56d6037f86f9..30538ea20ca3 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");
 	}