summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorGatien Chevallier <[email protected]>2025-08-08 16:03:57 +0200
committerPatrice Chotard <[email protected]>2025-09-18 17:20:34 +0200
commit0b5ae33eb31aa1a31d07152f1e59ebfc6c0a5424 (patch)
tree8b58b9229da5d6966438edbdfd384783781f7a64 /drivers
parentbb947665f57629404549cb2f6955ab82e0d557b2 (diff)
ARM: stm32mp: replace RIFSC check access APIs
Replace RIFSC check access APIs by grant/release access ones that handle the RIF semaphores. Signed-off-by: Gatien Chevallier <[email protected]> Signed-off-by: Patrice Chotard <[email protected]> Reviewed-by: Patrick Delaunay <[email protected]>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/clk/stm32/clk-stm32mp25.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/stm32/clk-stm32mp25.c b/drivers/clk/stm32/clk-stm32mp25.c
index 18c0b1cb867..b487f33b6c7 100644
--- a/drivers/clk/stm32/clk-stm32mp25.c
+++ b/drivers/clk/stm32/clk-stm32mp25.c
@@ -430,7 +430,7 @@ static int stm32mp25_check_security(struct udevice *dev, void __iomem *base,
u32 index = (u32)cfg->sec_id;
if (index & SEC_RIFSC_FLAG)
- ret = stm32_rifsc_check_access_by_id(dev_ofnode(dev),
+ ret = stm32_rifsc_grant_access_by_id(dev_ofnode(dev),
index & ~SEC_RIFSC_FLAG);
else
ret = stm32_rcc_get_access(dev, index);