From 0370bcf40ce3a07e6e2d33b8bcebf28a0ac98807 Mon Sep 17 00:00:00 2001 From: Aaron Durbin Date: Wed, 5 Sep 2018 09:37:11 -0600 Subject: complier.h: add __noreturn and use it in code base Add a __noreturn macro that wraps __attribute__((noreturn)) and replace current users with the macro. Change-Id: Iddd0728cf79678c3d1c1f7e7946c27375a644a7d Signed-off-by: Aaron Durbin Reviewed-on: https://review.coreboot.org/28505 Tested-by: build bot (Jenkins) Reviewed-by: Furquan Shaikh Reviewed-by: Paul Menzel --- src/soc/nvidia/tegra124/lp0/tegra_lp0_resume.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/soc/nvidia/tegra124') diff --git a/src/soc/nvidia/tegra124/lp0/tegra_lp0_resume.c b/src/soc/nvidia/tegra124/lp0/tegra_lp0_resume.c index 4d4eae95bc..00dc0f715f 100644 --- a/src/soc/nvidia/tegra124/lp0/tegra_lp0_resume.c +++ b/src/soc/nvidia/tegra124/lp0/tegra_lp0_resume.c @@ -265,7 +265,7 @@ static uint32_t *sysctr_cntfid0_ptr = (void *)(SYSCTR_CTLR_BASE + 0x20); /* Utility functions. */ static inline void __attribute__((always_inline)) - __attribute__((noreturn)) halt(void) + __noreturn halt(void) { for (;;); } @@ -290,7 +290,7 @@ static inline void clrbits32(uint32_t bits, void *addr) write32(addr, read32(addr) & ~bits); } -static void __attribute__((noreturn)) reset(void) +static void __noreturn reset(void) { write32(clk_rst_rst_devices_l_ptr, SWR_TRIG_SYS_RST); halt(); -- cgit v1.2.3