Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1618416
| From | Andrea della Porta <sfaragnaus@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] staging: comedi: drivers: s626.c - fixed checkpatch issue about data type |
| Date | 2017-04-07 02:20 +0200 |
| Message-ID | <ttpN7-84a-3@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
staging: comedi: drivers: s626.c - fixed the following checkpatch issue:
CHECK: Prefer kernel type 's16' over 'int16_t'
#1939: FILE: drivers/staging/comedi/drivers/s626.c:1939:
+ int16_t dacdata = (int16_t)data[i];
Signed-off-by: Andrea della Porta <sfaragnaus@gmail.com>
---
drivers/staging/comedi/drivers/s626.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/comedi/drivers/s626.c b/drivers/staging/comedi/drivers/s626.c
index 0b189c5..4b9c226 100644
--- a/drivers/staging/comedi/drivers/s626.c
+++ b/drivers/staging/comedi/drivers/s626.c
@@ -1936,7 +1936,7 @@ static int s626_ao_insn_write(struct comedi_device *dev,
int i;
for (i = 0; i < insn->n; i++) {
- int16_t dacdata = (int16_t)data[i];
+ s16 dacdata = (s16)data[i];
int ret;
dacdata -= (0x1fff);
--
2.4.10
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH] staging: comedi: drivers: s626.c - fixed checkpatch issue about data type Andrea della Porta <sfaragnaus@gmail.com> - 2017-04-07 02:20 +0200
csiph-web