Staging: comedi: fix checkpatch.pl issues in comedi_fc.c
This fixes all of the checkpatch.pl issues in the comedi_fc.c file. Cc: David Schleef <ds@schleef.org> Cc: Frank Mori Hess <fmhess@users.sourceforge.net> Cc: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
e7f2aa3455
commit
4e85a13b4e
1 changed files with 11 additions and 11 deletions
|
@ -28,8 +28,8 @@
|
||||||
|
|
||||||
#include "comedi_fc.h"
|
#include "comedi_fc.h"
|
||||||
|
|
||||||
static void increment_scan_progress(comedi_subdevice * subd,
|
static void increment_scan_progress(comedi_subdevice *subd,
|
||||||
unsigned int num_bytes)
|
unsigned int num_bytes)
|
||||||
{
|
{
|
||||||
comedi_async *async = subd->async;
|
comedi_async *async = subd->async;
|
||||||
unsigned int scan_length = cfc_bytes_per_scan(subd);
|
unsigned int scan_length = cfc_bytes_per_scan(subd);
|
||||||
|
@ -42,8 +42,8 @@ static void increment_scan_progress(comedi_subdevice * subd,
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Writes an array of data points to comedi's buffer */
|
/* Writes an array of data points to comedi's buffer */
|
||||||
unsigned int cfc_write_array_to_buffer(comedi_subdevice * subd, void *data,
|
unsigned int cfc_write_array_to_buffer(comedi_subdevice *subd, void *data,
|
||||||
unsigned int num_bytes)
|
unsigned int num_bytes)
|
||||||
{
|
{
|
||||||
comedi_async *async = subd->async;
|
comedi_async *async = subd->async;
|
||||||
unsigned int retval;
|
unsigned int retval;
|
||||||
|
@ -65,9 +65,10 @@ unsigned int cfc_write_array_to_buffer(comedi_subdevice * subd, void *data,
|
||||||
|
|
||||||
return num_bytes;
|
return num_bytes;
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL(cfc_write_array_to_buffer);
|
||||||
|
|
||||||
unsigned int cfc_read_array_from_buffer(comedi_subdevice * subd, void *data,
|
unsigned int cfc_read_array_from_buffer(comedi_subdevice *subd, void *data,
|
||||||
unsigned int num_bytes)
|
unsigned int num_bytes)
|
||||||
{
|
{
|
||||||
comedi_async *async = subd->async;
|
comedi_async *async = subd->async;
|
||||||
|
|
||||||
|
@ -82,8 +83,9 @@ unsigned int cfc_read_array_from_buffer(comedi_subdevice * subd, void *data,
|
||||||
|
|
||||||
return num_bytes;
|
return num_bytes;
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL(cfc_read_array_from_buffer);
|
||||||
|
|
||||||
unsigned int cfc_handle_events(comedi_device * dev, comedi_subdevice * subd)
|
unsigned int cfc_handle_events(comedi_device *dev, comedi_subdevice *subd)
|
||||||
{
|
{
|
||||||
unsigned int events = subd->async->events;
|
unsigned int events = subd->async->events;
|
||||||
|
|
||||||
|
@ -97,6 +99,7 @@ unsigned int cfc_handle_events(comedi_device * dev, comedi_subdevice * subd)
|
||||||
|
|
||||||
return events;
|
return events;
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL(cfc_handle_events);
|
||||||
|
|
||||||
MODULE_AUTHOR("Frank Mori Hess <fmhess@users.sourceforge.net>");
|
MODULE_AUTHOR("Frank Mori Hess <fmhess@users.sourceforge.net>");
|
||||||
MODULE_DESCRIPTION("Shared functions for Comedi low-level drivers");
|
MODULE_DESCRIPTION("Shared functions for Comedi low-level drivers");
|
||||||
|
@ -106,13 +109,10 @@ static int __init comedi_fc_init_module(void)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void __exit comedi_fc_cleanup_module(void)
|
static void __exit comedi_fc_cleanup_module(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
module_init(comedi_fc_init_module);
|
module_init(comedi_fc_init_module);
|
||||||
module_exit(comedi_fc_cleanup_module);
|
module_exit(comedi_fc_cleanup_module);
|
||||||
|
|
||||||
EXPORT_SYMBOL(cfc_write_array_to_buffer);
|
|
||||||
EXPORT_SYMBOL(cfc_read_array_from_buffer);
|
|
||||||
EXPORT_SYMBOL(cfc_handle_events);
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue