From: Ian Abbott Date: Wed, 16 Oct 2013 13:40:05 +0000 (+0100) Subject: staging: comedi: use unsigned sample in cfc_write_to_buffer() X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=ca05b81334f46469c6eb4ba7cf8630f3143c22e5;p=deliverable%2Flinux.git staging: comedi: use unsigned sample in cfc_write_to_buffer() Sample values in comedi are generally represented as unsigned values. `cfc_write_to_buffer()` in "comedi_fc.h" currently uses `short` to hold a 16-bit sample value to be written to the buffer. Change the type of the parameter to `unsigned short` for consistency. Signed-off-by: Ian Abbott Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/comedi/drivers/comedi_fc.h b/drivers/staging/comedi/drivers/comedi_fc.h index a4dea7cb86be..8558b07f8df3 100644 --- a/drivers/staging/comedi/drivers/comedi_fc.h +++ b/drivers/staging/comedi/drivers/comedi_fc.h @@ -30,7 +30,7 @@ extern unsigned int cfc_write_array_to_buffer(struct comedi_subdevice *subd, unsigned int num_bytes); static inline unsigned int cfc_write_to_buffer(struct comedi_subdevice *subd, - short data) + unsigned short data) { return cfc_write_array_to_buffer(subd, &data, sizeof(data)); };