Skip to content

Commit

Permalink
Fix the teehbr_read function prototype
Browse files Browse the repository at this point in the history
A "void" was missing inside brackets.

Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
  • Loading branch information
Catalin Marinas committed Nov 10, 2008
1 parent 8553cb6 commit 7f1fd31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/kernel/thumbee.c
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 7f1fd31

Please sign in to comment.