summaryrefslogtreecommitdiffstats
path: root/drivers/reset/reset-rockchip.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-02-03 07:35:52 -0700
committerSimon Glass <sjg@chromium.org>2020-02-05 19:33:46 -0700
commit94474b25c3a60a746bf641a975c3db239dae29b9 (patch)
treeead702b0bd11654511ff38e5eefe63a1d368c0b7 /drivers/reset/reset-rockchip.c
parent4f51188e47921b17e6b3ce9606c8e71234c9f2df (diff)
downloadu-boot-94474b25c3a60a746bf641a975c3db239dae29b9.tar.gz
u-boot-94474b25c3a60a746bf641a975c3db239dae29b9.tar.xz
u-boot-94474b25c3a60a746bf641a975c3db239dae29b9.zip
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>
Diffstat (limited to 'drivers/reset/reset-rockchip.c')
-rw-r--r--drivers/reset/reset-rockchip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/reset/reset-rockchip.c b/drivers/reset/reset-rockchip.c
index 3871fc00d0..4fb9571b18 100644
--- a/drivers/reset/reset-rockchip.c
+++ b/drivers/reset/reset-rockchip.c
@@ -76,7 +76,7 @@ static int rockchip_reset_deassert(struct reset_ctl *reset_ctl)
struct reset_ops rockchip_reset_ops = {
.request = rockchip_reset_request,
- .free = rockchip_reset_free,
+ .rfree = rockchip_reset_free,
.rst_assert = rockchip_reset_assert,
.rst_deassert = rockchip_reset_deassert,
};