mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
staging: comedi: cb_pcidas64: fix alignment of function parameters
Fix most checkpatch.pl issues of type: CHECK: Alignment should match open parenthesis Signed-off-by: Gabriel Francisco Mandaji <gfmandaji@gmail.com> Reviewed-by: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
21ab37de5c
commit
eb641b920b
1 changed files with 3 additions and 3 deletions
|
@ -2268,14 +2268,14 @@ static inline unsigned int dma_transfer_size(struct comedi_device *dev)
|
|||
}
|
||||
|
||||
static u32 ai_convert_counter_6xxx(const struct comedi_device *dev,
|
||||
const struct comedi_cmd *cmd)
|
||||
const struct comedi_cmd *cmd)
|
||||
{
|
||||
/* supposed to load counter with desired divisor minus 3 */
|
||||
return cmd->convert_arg / TIMER_BASE - 3;
|
||||
}
|
||||
|
||||
static u32 ai_scan_counter_6xxx(struct comedi_device *dev,
|
||||
struct comedi_cmd *cmd)
|
||||
struct comedi_cmd *cmd)
|
||||
{
|
||||
u32 count;
|
||||
|
||||
|
@ -2296,7 +2296,7 @@ static u32 ai_scan_counter_6xxx(struct comedi_device *dev,
|
|||
}
|
||||
|
||||
static u32 ai_convert_counter_4020(struct comedi_device *dev,
|
||||
struct comedi_cmd *cmd)
|
||||
struct comedi_cmd *cmd)
|
||||
{
|
||||
struct pcidas64_private *devpriv = dev->private;
|
||||
unsigned int divisor;
|
||||
|
|
Loading…
Reference in a new issue