Commit 7f1fd31d authored by Catalin Marinas's avatar Catalin Marinas

Fix the teehbr_read function prototype

A "void" was missing inside brackets.
Signed-off-by: default avatarCatalin Marinas <catalin.marinas@arm.com>



parent 8553cb67
......@@ -25,7 +25,7 @@
/*
* Access to the ThumbEE Handler Base register
*/
static inline unsigned long teehbr_read()
static inline unsigned long teehbr_read(void)
{
unsigned long v;
asm("mrc p14, 6, %0, c1, c0, 0\n" : "=r" (v));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment