mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
reset: Rename free() to rfree()
This function name conflicts with our desire to #define free() to something else on sandbox. Since it deals with resources, rename it to rfree(). Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
4f51188e47
commit
94474b25c3
19 changed files with 20 additions and 20 deletions
|
@ -64,7 +64,7 @@ static int stm32_reset_deassert(struct reset_ctl *reset_ctl)
|
|||
|
||||
static const struct reset_ops stm32_reset_ops = {
|
||||
.request = stm32_reset_request,
|
||||
.free = stm32_reset_free,
|
||||
.rfree = stm32_reset_free,
|
||||
.rst_assert = stm32_reset_assert,
|
||||
.rst_deassert = stm32_reset_deassert,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue