Skip to content

Commit

Permalink
MIPS: MSP71xx: remove inline marking of EXPORT_SYMBOL functions
Browse files Browse the repository at this point in the history
EXPORT_SYMBOL and inline directives are contradictory to each other.
The patch fixes this inconsistency.

Found by Linux Driver Verification project (linuxtesting.org).

Signed-off-by: Denis Efremov <yefremov.denis@gmail.com>
Cc: linux-mips@linux-mips.org
Cc: linux-kernel@vger.kernel.org
Cc: trivial@kernel.org
Cc: ldv-project@linuxtesting.org
Patchwork: https://patchwork.linux-mips.org/patch/5227/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
  • Loading branch information
Denis Efremov authored and Ralf Baechle committed May 17, 2013
1 parent 49c426b commit d552b23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/mips/pmcs-msp71xx/msp_prom.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ static inline unsigned char str2hexnum(unsigned char c)
return 0; /* foo */
}

static inline int str2eaddr(unsigned char *ea, unsigned char *str)
int str2eaddr(unsigned char *ea, unsigned char *str)
{
int index = 0;
unsigned char num = 0;
Expand Down

0 comments on commit d552b23

Please sign in to comment.