Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

Fix the teehbr_read function prototype



A "void" was missing inside brackets.

Signed-off-by: default avatarCatalin Marinas <catalin.marinas@arm.com>



parent 8553cb67
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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));