diff options
| author | Matt Phillips <mathewrphillips@gmail.com> | 2012-11-25 23:53:21 -0600 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-26 16:21:19 -0800 |
| commit | d0cdf020ed306ac2c9a6ecb2e41120599c751fbf (patch) | |
| tree | d01e281906622ffe81cb6ffbf5c810e0db86aef5 | |
| parent | 1a276b80466bbd195cf94ec7178f68f2ab351467 (diff) | |
| download | linux-d0cdf020ed306ac2c9a6ecb2e41120599c751fbf.tar.gz linux-d0cdf020ed306ac2c9a6ecb2e41120599c751fbf.zip | |
staging: comedi: ni_tio.h fixed coding style issue with pointer variables
Fixed coding style issues with pointers
Signed-off-by: Matt Phillips <mathewrphillips@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | drivers/staging/comedi/drivers/ni_tio.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/comedi/drivers/ni_tio.h b/drivers/staging/comedi/drivers/ni_tio.h index b0588202e5ac..8572996539fa 100644 --- a/drivers/staging/comedi/drivers/ni_tio.h +++ b/drivers/staging/comedi/drivers/ni_tio.h @@ -120,9 +120,9 @@ struct ni_gpct { struct ni_gpct_device { struct comedi_device *dev; - void (*write_register) (struct ni_gpct * counter, unsigned bits, + void (*write_register) (struct ni_gpct *counter, unsigned bits, enum ni_gpct_register reg); - unsigned (*read_register) (struct ni_gpct * counter, + unsigned (*read_register) (struct ni_gpct *counter, enum ni_gpct_register reg); enum ni_gpct_variant variant; struct ni_gpct *counters; |
