mirror of
https://github.com/opnsense/src.git
synced 2026-02-18 18:20:26 -05:00
xilinx: reset: Remove debug printfs
Sponsored by: Beckhoff Automation GmbH & Co. KG (cherry picked from commit 257405d707d77bc55b38e7c2bb83b8a9247a86ae)
This commit is contained in:
parent
b4cd14485a
commit
26bf8fff64
1 changed files with 0 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue