diff mbox series

firewall: remove misplaced semicolon from stm32_firewall_get_firewall

Message ID 20241220083335.66350-1-alexandre.torgue@foss.st.com (mailing list archive)
State New
Headers show
Series firewall: remove misplaced semicolon from stm32_firewall_get_firewall | expand

Commit Message

Alexandre Torgue Dec. 20, 2024, 8:33 a.m. UTC
From: guanjing <guanjing@cmss.chinamobile.com>

Remove misplaced colon in stm32_firewall_get_firewall()
which results in a syntax error when the code is compiled
without CONFIG_STM32_FIREWALL.

Fixes: 5c9668cfc6d7 ("firewall: introduce stm32_firewall framework")
Signed-off-by: guanjing <guanjing@cmss.chinamobile.com>
Reviewed-by: Gatien Chevallier <gatien.chevallier@foss.st.com>
Signed-off-by: Alexandre Torgue <alexandre.torgue@foss.st.com>

---

Hi Arm SoC maintainers

Can you please take this STM32 firewall patch in your SoC tree for v6.14 ?

Thanks in advance.
Alex
diff mbox series

Patch

diff --git a/include/linux/bus/stm32_firewall_device.h b/include/linux/bus/stm32_firewall_device.h
index 18e0a2fc3816..5178b72bc920 100644
--- a/include/linux/bus/stm32_firewall_device.h
+++ b/include/linux/bus/stm32_firewall_device.h
@@ -115,7 +115,7 @@  void stm32_firewall_release_access_by_id(struct stm32_firewall *firewall, u32 su
 #else /* CONFIG_STM32_FIREWALL */
 
 int stm32_firewall_get_firewall(struct device_node *np, struct stm32_firewall *firewall,
-				unsigned int nb_firewall);
+				unsigned int nb_firewall)
 {
 	return -ENODEV;
 }