This patch fixes checkpatch.pl error: "ERROR: open brace '{' following function declarations go on the next line" Signed-off-by: Michel von Czettritz <michel.von.czettritz@xxxxxxxxx> --- drivers/staging/sm750fb/sm750.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/staging/sm750fb/sm750.c b/drivers/staging/sm750fb/sm750.c index ad0c663..a0a8db7 100644 --- a/drivers/staging/sm750fb/sm750.c +++ b/drivers/staging/sm750fb/sm750.c @@ -58,7 +58,8 @@ static char *g_option = NULL; /* if not use spin_lock,system will die if user load driver * and immediatly unload driver frequently (dual)*/ -static inline void myspin_lock(spinlock_t *sl) { +static inline void myspin_lock(spinlock_t *sl) +{ struct lynx_share *share; share = container_of(sl, struct lynx_share, slock); if (share->dual) { @@ -66,7 +67,8 @@ static inline void myspin_lock(spinlock_t *sl) { } } -static inline void myspin_unlock(spinlock_t *sl) { +static inline void myspin_unlock(spinlock_t *sl) +{ struct lynx_share *share; share = container_of(sl, struct lynx_share, slock); if (share->dual) { -- 2.3.3 -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html