Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1521336
| From | Walt Feasel <waltfeasel@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] [STYLE]staging:xgifb:vb_util.h No space after cast |
| Date | 2016-11-14 07:00 +0100 |
| Message-ID | <sDitb-2L6-5@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Make suggested modification from checkpatch in reference to: CHECK: No space is necessary after a cast Signed-off-by: Walt Feasel <waltfeasel@gmail.com> --- drivers/staging/xgifb/vb_util.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/xgifb/vb_util.h b/drivers/staging/xgifb/vb_util.h index 08db58b..052694e 100644 --- a/drivers/staging/xgifb/vb_util.h +++ b/drivers/staging/xgifb/vb_util.h @@ -18,7 +18,7 @@ static inline void xgifb_reg_and_or(unsigned long port, u8 index, u8 temp; temp = xgifb_reg_get(port, index); - temp = (u8) ((temp & data_and) | data_or); + temp = (u8)((temp & data_and) | data_or); xgifb_reg_set(port, index, temp); } @@ -28,7 +28,7 @@ static inline void xgifb_reg_and(unsigned long port, u8 index, u8 temp; temp = xgifb_reg_get(port, index); - temp = (u8) (temp & data_and); + temp = (u8)(temp & data_and); xgifb_reg_set(port, index, temp); } -- 2.1.4
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH] [STYLE]staging:xgifb:vb_util.h No space after cast Walt Feasel <waltfeasel@gmail.com> - 2016-11-14 07:00 +0100
csiph-web