aboutsummaryrefslogtreecommitdiff
path: root/include/bl1
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 /include/bl1
parentf53d0fce3f8e13529d823c22ce61dc0e0fdf0ffd (diff)
downloadtrusted-firmware-a-c6bc071020baebc660fc94390b50bc240e34c0a3.tar.gz
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 'include/bl1')
-rw-r--r--include/bl1/bl1.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/bl1/bl1.h b/include/bl1/bl1.h
index d8afae460f..b1bbf244f9 100644
--- a/include/bl1/bl1.h
+++ b/include/bl1/bl1.h
@@ -40,7 +40,7 @@ struct meminfo;
/******************************************
* Function prototypes
*****************************************/
-extern void bl1_platform_setup(void);
-extern struct meminfo *bl1_plat_sec_mem_layout(void);
+void bl1_platform_setup(void);
+struct meminfo *bl1_plat_sec_mem_layout(void);
#endif /* __BL1_H__ */