Commit e45c2379 authored by Andrea della Porta's avatar Andrea della Porta Committed by Greg Kroah-Hartman

staging: comedi: drivers: s626.c - fixed checkpatch issue about data type

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: default avatarAndrea della Porta <sfaragnaus@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1bb90b68
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment