Date: Sun, 28 Jan 2024 11:39:30 GMT From: Andriy Gapon <avg@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 43ca38eb59ff - main - mmc_fdt_parse: remove redundant bootverbose check Message-ID: <202401281139.40SBdUcu071478@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by avg: URL: https://cgit.FreeBSD.org/src/commit/?id=43ca38eb59ff194fb6d8ad589e74147d94717bf4 commit 43ca38eb59ff194fb6d8ad589e74147d94717bf4 Author: Andriy Gapon <avg@FreeBSD.org> AuthorDate: 2021-09-24 16:26:06 +0000 Commit: Andriy Gapon <avg@FreeBSD.org> CommitDate: 2024-01-28 11:39:03 +0000 mmc_fdt_parse: remove redundant bootverbose check --- 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 0fb76dbfe522..752e5d14bcb0 100644 --- a/sys/dev/mmc/mmc_fdt_helpers.c +++ b/sys/dev/mmc/mmc_fdt_helpers.c @@ -66,7 +66,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"); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202401281139.40SBdUcu071478>