From: Catalin Marinas Date: Mon, 10 Nov 2008 14:14:11 +0000 (+0000) Subject: Fix the teehbr_read function prototype X-Git-Tag: v2.6.29-rc1~559^2~84^2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=7f1fd31db158c95418d9cc5690ab60ecc6fb632d;p=karo-tx-linux.git Fix the teehbr_read function prototype A "void" was missing inside brackets. Signed-off-by: Catalin Marinas --- diff --git a/arch/arm/kernel/thumbee.c b/arch/arm/kernel/thumbee.c index df3f6b7ebcea..9cb7aaca159f 100644 --- a/arch/arm/kernel/thumbee.c +++ b/arch/arm/kernel/thumbee.c @@ -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));