Commit 58f91823 authored by Ian Abbott's avatar Ian Abbott Committed by Greg Kroah-Hartman

staging: comedi: fl512: sample types are unsigned

Sample values in comedi are generally represented as unsigned values.
Change the element type of the `ao_readback[]` member of `struct
fl512_private` from `short` to `unsigned short` for consistency.
Signed-off-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 37a96e99
...@@ -25,8 +25,7 @@ Configuration options: ...@@ -25,8 +25,7 @@ Configuration options:
#define FL512_SIZE 16 /* the size of the used memory */ #define FL512_SIZE 16 /* the size of the used memory */
struct fl512_private { struct fl512_private {
unsigned short ao_readback[2];
short ao_readback[2];
}; };
static const struct comedi_lrange range_fl512 = { 4, { static const struct comedi_lrange range_fl512 = { 4, {
......
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