From 257405d707d77bc55b38e7c2bb83b8a9247a86ae Mon Sep 17 00:00:00 2001 From: Emmanuel Vadot Date: Thu, 12 Oct 2023 09:32:32 +0200 Subject: [PATCH] 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);