Fix the teehbr_read function prototype
A "void" was missing inside brackets. Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
This commit is contained in:
parent
8553cb67d2
commit
7f1fd31db1
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue