summaryrefslogtreecommitdiff
path: root/bootloader/gigabeat-s.c
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader/gigabeat-s.c')
-rw-r--r--bootloader/gigabeat-s.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/bootloader/gigabeat-s.c b/bootloader/gigabeat-s.c
index b6db9e633f..9c5ad93d1f 100644
--- a/bootloader/gigabeat-s.c
+++ b/bootloader/gigabeat-s.c
@@ -22,6 +22,7 @@
22#include "system.h" 22#include "system.h"
23#include <stdio.h> 23#include <stdio.h>
24#include "kernel.h" 24#include "kernel.h"
25#include "gcc_extensions.h"
25#include "string.h" 26#include "string.h"
26#include "adc.h" 27#include "adc.h"
27#include "powermgmt.h" 28#include "powermgmt.h"
@@ -296,7 +297,7 @@ static void handle_untar(void)
296} 297}
297 298
298/* Try to load the firmware and run it */ 299/* Try to load the firmware and run it */
299static void __attribute__((noreturn)) handle_firmware_load(void) 300static void NORETURN_ATTR handle_firmware_load(void)
300{ 301{
301 int rc = load_firmware(load_buf, BOOTFILE, 302 int rc = load_firmware(load_buf, BOOTFILE,
302 load_buf_size); 303 load_buf_size);