Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1266665
| From | "Daniel H. Hemmingsen" <dhh.kernel@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] Staging: panel: Fixed a spacing after cast coding style issue |
| Date | 2015-11-10 18:40 +0100 |
| Message-ID | <qtl3I-83A-15@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Fixed a spacing after cast coding style issue.
Signed-off-by: Daniel H. Hemmingsen <dhh.kernel@gmail.com>
---
drivers/staging/panel/panel.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/panel/panel.c b/drivers/staging/panel/panel.c
index 79ac192..96920ef 100644
--- a/drivers/staging/panel/panel.c
+++ b/drivers/staging/panel/panel.c
@@ -1788,7 +1788,7 @@ static void phys_scan_contacts(void)
gndmask = PNL_PINPUT(r_str(pprt)) & scan_mask_i;
/* grounded inputs are signals 40-44 */
- phys_read |= (pmask_t) gndmask << 40;
+ phys_read |= (pmask_t)gndmask << 40;
if (bitmask != gndmask) {
/*
--
2.6.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] Staging: panel: Fixed a spacing after cast coding style issue "Daniel H. Hemmingsen" <dhh.kernel@gmail.com> - 2015-11-10 18:40 +0100 Re: [PATCH] Staging: panel: Fixed a spacing after cast coding style issue Willy Tarreau <w@1wt.eu> - 2015-11-11 08:50 +0100
csiph-web