git: 257405d707d7 - main - xilinx: reset: Remove debug printfs

From: Emmanuel Vadot <manu_at_FreeBSD.org>
Date: Thu, 12 Oct 2023 07:33:05 UTC
The branch main has been updated by manu:

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

commit 257405d707d77bc55b38e7c2bb83b8a9247a86ae
Author:     Emmanuel Vadot <manu@FreeBSD.org>
AuthorDate: 2023-10-12 07:32:32 +0000
Commit:     Emmanuel Vadot <manu@FreeBSD.org>
CommitDate: 2023-10-12 07:32:59 +0000

    xilinx: reset: Remove debug printfs
    
    Sponsored by:   Beckhoff Automation GmbH & Co. KG
---
 sys/dev/clk/xilinx/zynqmp_reset.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/sys/dev/clk/xilinx/zynqmp_reset.c b/sys/dev/clk/xilinx/zynqmp_reset.c
index 484f19c229c5..52074d4c62af 100644
--- a/sys/dev/clk/xilinx/zynqmp_reset.c
+++ b/sys/dev/clk/xilinx/zynqmp_reset.c
@@ -183,7 +183,6 @@ zynqmp_reset_assert(device_t dev, intptr_t id, bool reset)
 	if (id > ZYNQMP_RESET_MAX)
 		return (EINVAL);
 	sc = device_get_softc(dev);
-	device_printf(dev, "%s called for id = %ld, reset =%d\n", __func__, id, reset);
 	rv = ZYNQMP_FIRMWARE_RESET_ASSERT(sc->parent, id, reset);
 	return (rv);
 }
@@ -197,7 +196,6 @@ zynqmp_reset_is_asserted(device_t dev, intptr_t id, bool *reset)
 	if (id > ZYNQMP_RESET_MAX)
 		return (EINVAL);
 	sc = device_get_softc(dev);
-	device_printf(dev, "%s called for id = %ld\n", __func__, id);
 	rv = ZYNQMP_FIRMWARE_RESET_GET_STATUS(sc->parent, id, reset);
 
 	return (rv);