The branch main has been updated by adrian: URL: https://cgit.FreeBSD.org/src/commit/?id=32f854663d76ea06529ca8990ec0d116c8acb32b
commit 32f854663d76ea06529ca8990ec0d116c8acb32b Author: Adrian Chadd <[email protected]> AuthorDate: 2026-05-18 17:03:20 +0000 Commit: Adrian Chadd <[email protected]> CommitDate: 2026-05-18 17:04:11 +0000 qcom_tlmm: remove annoying debugging Yes this printf is for local debugging and not required at all on anything. Pointed out by: andrew@ --- sys/dev/qcom_tlmm/qcom_tlmm.c | 1 - 1 file changed, 1 deletion(-) diff --git a/sys/dev/qcom_tlmm/qcom_tlmm.c b/sys/dev/qcom_tlmm/qcom_tlmm.c index 3581e651fd59..5b2c11941d50 100644 --- a/sys/dev/qcom_tlmm/qcom_tlmm.c +++ b/sys/dev/qcom_tlmm/qcom_tlmm.c @@ -90,7 +90,6 @@ qcom_tlmm_probe(device_t dev) for (i = 0; qcom_tlmm_chipsets[i].id != 0; i++) { ql = &qcom_tlmm_chipsets[i]; - device_printf(dev, "%s: checking %s\n", __func__, ql->ofw_str); if (ofw_bus_is_compatible(dev, ql->ofw_str) == 1) { sc->sc_chipset = ql->id; sc->sc_attach_func = ql->attach_func;
