summaryrefslogtreecommitdiff
path: root/bl1/bl1_private.h
diff options
context:
space:
mode:
authorDan Handley <dan.handley@arm.com>2014-05-14 12:38:32 +0100
committerAndrew Thoelke <andrew.thoelke@arm.com>2014-05-23 12:15:54 +0100
commitc6bc071020baebc660fc94390b50bc240e34c0a3 (patch)
treeec62f78721bb7f491e7b7cf19f3d6a39b97ad65f /bl1/bl1_private.h
parentf53d0fce3f8e13529d823c22ce61dc0e0fdf0ffd (diff)
Remove extern keyword from function declarations
Function declarations implicitly have external linkage so do not need the extern keyword. Change-Id: Ia0549786796d8bf5956487e8996450a0b3d79f32
Diffstat (limited to 'bl1/bl1_private.h')
-rw-r--r--bl1/bl1_private.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/bl1/bl1_private.h b/bl1/bl1_private.h
index b2ebf214..b54bf6ba 100644
--- a/bl1/bl1_private.h
+++ b/bl1/bl1_private.h
@@ -34,7 +34,7 @@
/******************************************
* Function prototypes
*****************************************/
-extern void bl1_arch_setup(void);
-extern void bl1_arch_next_el_setup(void);
+void bl1_arch_setup(void);
+void bl1_arch_next_el_setup(void);
#endif /* __BL1_PRIVATE_H__ */