summaryrefslogtreecommitdiff
path: root/firmware/target/arm/at91sam
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/at91sam')
-rw-r--r--firmware/target/arm/at91sam/lyre_proto1/debug-lyre_proto1.c4
-rw-r--r--firmware/target/arm/at91sam/lyre_proto1/debug-target.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/firmware/target/arm/at91sam/lyre_proto1/debug-lyre_proto1.c b/firmware/target/arm/at91sam/lyre_proto1/debug-lyre_proto1.c
index 54a262a9ff..5277afc348 100644
--- a/firmware/target/arm/at91sam/lyre_proto1/debug-lyre_proto1.c
+++ b/firmware/target/arm/at91sam/lyre_proto1/debug-lyre_proto1.c
@@ -23,12 +23,12 @@
23#include <stdbool.h> 23#include <stdbool.h>
24#include "debug-target.h" 24#include "debug-target.h"
25 25
26bool __dbg_ports(void) 26bool dbg_ports(void)
27{ 27{
28 return false; 28 return false;
29} 29}
30 30
31bool __dbg_hw_info(void) 31bool dbg_hw_info(void)
32{ 32{
33 return false; 33 return false;
34} 34}
diff --git a/firmware/target/arm/at91sam/lyre_proto1/debug-target.h b/firmware/target/arm/at91sam/lyre_proto1/debug-target.h
index 140feafe67..59dd58cb32 100644
--- a/firmware/target/arm/at91sam/lyre_proto1/debug-target.h
+++ b/firmware/target/arm/at91sam/lyre_proto1/debug-target.h
@@ -21,6 +21,6 @@
21 21
22#include <stdbool.h> 22#include <stdbool.h>
23 23
24bool __dbg_ports(void); 24bool dbg_ports(void);
25bool __dbg_hw_info(void); 25bool dbg_hw_info(void);
26 26