diff options
author | Aaron Durbin <adurbin@chromium.org> | 2018-09-05 09:37:11 -0600 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-09-10 15:02:51 +0000 |
commit | 0370bcf40ce3a07e6e2d33b8bcebf28a0ac98807 (patch) | |
tree | 8dbdeded229ced4fc7bf7579954798ddfb7d7439 /src/soc/nvidia | |
parent | 261d626669ea244a55ec310a11a23ca56b609b51 (diff) |
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 <adurbin@chromium.org>
Reviewed-on: https://review.coreboot.org/28505
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/soc/nvidia')
-rw-r--r-- | src/soc/nvidia/tegra124/lp0/tegra_lp0_resume.c | 4 | ||||
-rw-r--r-- | src/soc/nvidia/tegra210/lp0/tegra_lp0_resume.c | 4 |
2 files changed, 4 insertions, 4 deletions
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(); diff --git a/src/soc/nvidia/tegra210/lp0/tegra_lp0_resume.c b/src/soc/nvidia/tegra210/lp0/tegra_lp0_resume.c index 01cf2163f9..2e8c9bb6b3 100644 --- a/src/soc/nvidia/tegra210/lp0/tegra_lp0_resume.c +++ b/src/soc/nvidia/tegra210/lp0/tegra_lp0_resume.c @@ -429,7 +429,7 @@ enum { /* Utility functions. */ static inline void __attribute__((always_inline)) - __attribute__((noreturn)) halt(void) + __noreturn halt(void) { for (;;); } @@ -454,7 +454,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(); |