Commit e10b1781 authored by Paul McQuade's avatar Paul McQuade Committed by Greg Kroah-Hartman

staging: comedi: s626: Use Preferred kernel type

Change to kenel type u8 or u16 instead of uint8_t or uint16_t
Signed-off-by: default avatarPaul McQuade <paulmcquad@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8e2ff0e4
......@@ -2268,10 +2268,10 @@ static int s626_initialize(struct comedi_device *dev)
*/
{
struct comedi_subdevice *s = dev->read_subdev;
uint8_t poll_list;
uint16_t adc_data;
uint16_t start_val;
uint16_t index;
u8 poll_list;
u16 adc_data;
u16 start_val;
u16 index;
unsigned int data[16];
/* Create a simple polling list for analog input channel 0 */
......
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