Searched refs:rfree (Results 1 - 25 of 41) sorted by relevance

12

/u-boot/include/
H A Dreset-uclass.h54 * rfree - Free a previously requested reset control.
61 int (*rfree)(struct reset_ctl *reset_ctl); member in struct:reset_ops
H A Dpower-domain-uclass.h57 * rfree - Free a previously requested power domain.
64 int (*rfree)(struct power_domain *power_domain); member in struct:power_domain_ops
H A Dmailbox-uclass.h52 * rfree - Free a previously requested channel.
59 int (*rfree)(struct mbox_chan *chan); member in struct:mbox_ops
H A Ddma-uclass.h61 * rfree - Free a previously requested dma.
68 int (*rfree)(struct dma *dma); member in struct:dma_ops
/u-boot/drivers/mailbox/
H A Dmailbox-uclass.c112 if (ops->rfree)
113 return ops->rfree(chan);
H A Dsandbox-mbox.c92 .rfree = sandbox_mbox_free,
H A Dstm32-ipcc.c153 .rfree = stm32_ipcc_free,
H A Dtegra-hsp.c181 .rfree = tegra_hsp_free,
/u-boot/drivers/power/domain/
H A Dsandbox-power-domain.c80 .rfree = sandbox_power_domain_free,
H A Dzynqmp-power-domain.c63 .rfree = zynqmp_power_domain_free,
H A Dpower-domain-uclass.c108 return ops->rfree ? ops->rfree(power_domain) : 0;
/u-boot/drivers/mtd/nand/spi/
H A Dwinbond.c63 .rfree = w25m02gv_ooblayout_free,
106 .rfree = w25n02kv_ooblayout_free,
H A Dxtx.c69 .rfree = xt26g0xa_ooblayout_free,
122 .rfree = xt26xxxd_ooblayout_free,
H A Dparagon.c97 .rfree = pn26g0xa_ooblayout_free,
H A Desmt.c104 .rfree = f50l1g41lb_ooblayout_free,
H A Dgigadevice.c85 .rfree = gd5fxgq4xa_ooblayout_free,
140 .rfree = gd5fxgqx_variant2_ooblayout_free,
169 .rfree = gd5fxgq4xc_ooblayout_256_free,
H A Dmicron.c89 .rfree = micron_8_ooblayout_free,
130 .rfree = micron_4_ooblayout_free,
/u-boot/drivers/reset/
H A Dreset-npcm.c131 .rfree = npcm_reset_free,
H A Dsandbox-reset.c91 .rfree = sandbox_reset_free,
H A Dreset-jh7110.c146 .rfree = jh7110_reset_free,
H A Dreset-uclass.c182 return ops->rfree ? ops->rfree(reset_ctl) : 0;
/u-boot/arch/arm/mach-mvebu/
H A Dsystem-controller.c94 .rfree = mvebu_reset_free,
/u-boot/drivers/gpio/
H A Dmvebu_gpio.c105 .rfree = pinctrl_gpio_free,
H A Dgpio-rcar.c135 .rfree = pinctrl_gpio_free,
/u-boot/drivers/dma/
H A Ddma-uclass.c132 if (!ops->rfree)
135 return ops->rfree(dma);

Completed in 254 milliseconds

12