From a99f5916b9c39071566ea516c2471958634260de Mon Sep 17 00:00:00 2001 From: =?utf8?q?T=C3=BClin=20=C4=B0zer?= Date: Wed, 22 May 2013 04:24:22 +0300 Subject: [PATCH] Staging: tidspbridge: _tiomap.h: fixed warning 'space prohibited before semicolon'. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This patch fixes warning 'space prohibited before semicolon' found by checkpatch.pl in tidspbridge/_tiomap.h Signed-off-by: Tülin İzer Signed-off-by: Greg Kroah-Hartman --- drivers/staging/tidspbridge/core/_tiomap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/tidspbridge/core/_tiomap.h b/drivers/staging/tidspbridge/core/_tiomap.h index b783bfa59b1c..e637836f0735 100644 --- a/drivers/staging/tidspbridge/core/_tiomap.h +++ b/drivers/staging/tidspbridge/core/_tiomap.h @@ -311,7 +311,7 @@ static const struct bpwr_clk_t bpwr_clks[] = { #define SET_GROUP_BITS16(reg, position, width, value) \ do {\ - reg &= ~((0xFFFF >> (16 - (width))) << (position)) ; \ + reg &= ~((0xFFFF >> (16 - (width))) << (position)); \ reg |= ((value & (0xFFFF >> (16 - (width)))) << (position)); \ } while (0); -- 2.11.0