staging: comedi: comedi_fc: rename comedi_subdevice variables in header
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Sat, 8 Mar 2014 00:31:22 +0000 (17:31 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 17 Mar 2014 20:55:52 +0000 (13:55 -0700)
Typically the comedi_subdevice variable is simply named 's'. Rename
the variables in comedi_fc.h.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/comedi_fc.h

index a5b9d112f3cb45919a143e99c9970497027c1049..042bf87918c649b46686af8c1bdb50a792a7645b 100644 (file)
 unsigned int cfc_write_array_to_buffer(struct comedi_subdevice *,
                                       void *data, unsigned int num_bytes);
 
-static inline unsigned int cfc_write_to_buffer(struct comedi_subdevice *subd,
+static inline unsigned int cfc_write_to_buffer(struct comedi_subdevice *s,
                                               unsigned short data)
 {
-       return cfc_write_array_to_buffer(subd, &data, sizeof(data));
+       return cfc_write_array_to_buffer(s, &data, sizeof(data));
 };
 
-static inline unsigned int cfc_write_long_to_buffer(struct comedi_subdevice
-                                                   *subd, unsigned int data)
+static inline unsigned int cfc_write_long_to_buffer(struct comedi_subdevice *s,
+                                                   unsigned int data)
 {
-       return cfc_write_array_to_buffer(subd, &data, sizeof(data));
+       return cfc_write_array_to_buffer(s, &data, sizeof(data));
 };
 
 unsigned int cfc_read_array_from_buffer(struct comedi_subdevice *,
@@ -45,24 +45,24 @@ unsigned int cfc_read_array_from_buffer(struct comedi_subdevice *,
 unsigned int cfc_handle_events(struct comedi_device *,
                               struct comedi_subdevice *);
 
-static inline unsigned int cfc_bytes_per_scan(struct comedi_subdevice *subd)
+static inline unsigned int cfc_bytes_per_scan(struct comedi_subdevice *s)
 {
        int num_samples;
        int bits_per_sample;
 
-       switch (subd->type) {
+       switch (s->type) {
        case COMEDI_SUBD_DI:
        case COMEDI_SUBD_DO:
        case COMEDI_SUBD_DIO:
-               bits_per_sample = 8 * bytes_per_sample(subd);
-               num_samples = (subd->async->cmd.chanlist_len +
+               bits_per_sample = 8 * bytes_per_sample(s);
+               num_samples = (s->async->cmd.chanlist_len +
                               bits_per_sample - 1) / bits_per_sample;
                break;
        default:
-               num_samples = subd->async->cmd.chanlist_len;
+               num_samples = s->async->cmd.chanlist_len;
                break;
        }
-       return num_samples * bytes_per_sample(subd);
+       return num_samples * bytes_per_sample(s);
 }
 
 /**