From a933fb7bcc54c6e1531388d57e421e5a6506de32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Cab=C3=A9?= Date: Wed, 11 Jun 2025 11:08:22 +0200 Subject: [PATCH] soc: sensry: remove unnecessary parenthesis from macro MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit removed redundant parentheses Signed-off-by: Benjamin Cabé --- soc/sensry/ganymed/sy1xx/common/soc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/soc/sensry/ganymed/sy1xx/common/soc.c b/soc/sensry/ganymed/sy1xx/common/soc.c index 5ad1100efb0..18cb2ea309d 100644 --- a/soc/sensry/ganymed/sy1xx/common/soc.c +++ b/soc/sensry/ganymed/sy1xx/common/soc.c @@ -31,8 +31,8 @@ void sys_arch_reboot(int type) ARG_UNUSED(type); } -#define SY1XX_ARCHI_REF_CLOCK (32768) -#define SY1XX_ARCHI_PER_CLOCK (125000000) +#define SY1XX_ARCHI_REF_CLOCK 32768 +#define SY1XX_ARCHI_PER_CLOCK 125000000 uint32_t sy1xx_soc_get_rts_clock_frequency(void) {