summaryrefslogtreecommitdiff
path: root/drivers/mailbox/stm32-ipcc.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-02-03 17:35:50 +0300
committerSimon Glass <sjg@chromium.org>2020-02-06 05:33:46 +0300
commitcc92c3cc68a9053f53b2814e9233d86553cc998e (patch)
tree7b6bf0039b0252b4d235da523d716b2e261aaa7b /drivers/mailbox/stm32-ipcc.c
parent3b85ce8ec32910b7576e816243cde7c6740fd68a (diff)
downloadu-boot-cc92c3cc68a9053f53b2814e9233d86553cc998e.tar.xz
mailbox: 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/mailbox/stm32-ipcc.c')
-rw-r--r--drivers/mailbox/stm32-ipcc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mailbox/stm32-ipcc.c b/drivers/mailbox/stm32-ipcc.c
index c3df9678a7..d4035a85f2 100644
--- a/drivers/mailbox/stm32-ipcc.c
+++ b/drivers/mailbox/stm32-ipcc.c
@@ -152,7 +152,7 @@ static const struct udevice_id stm32_ipcc_ids[] = {
struct mbox_ops stm32_ipcc_mbox_ops = {
.request = stm32_ipcc_request,
- .free = stm32_ipcc_free,
+ .rfree = stm32_ipcc_free,
.send = stm32_ipcc_send,
.recv = stm32_ipcc_recv,
};