staging: comedi: comedi_pcmcia.[ch]: add identifiers to function parameters
Fix checkpatch.pl warnings of the form "function definition argument 'foo' should also have an identifier name". Signed-off-by: Ian Abbott <abbotti@mev.co.uk> Reviewed-by: H Hartley Sweeten <hsweeten@visionengravers.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
751922da90
commit
514871ef43
|
@ -78,7 +78,8 @@ static int comedi_pcmcia_conf_check(struct pcmcia_device *link,
|
||||||
* or a negative error number from pcmcia_enable_device() if it fails.
|
* or a negative error number from pcmcia_enable_device() if it fails.
|
||||||
*/
|
*/
|
||||||
int comedi_pcmcia_enable(struct comedi_device *dev,
|
int comedi_pcmcia_enable(struct comedi_device *dev,
|
||||||
int (*conf_check)(struct pcmcia_device *, void *))
|
int (*conf_check)(struct pcmcia_device *p_dev,
|
||||||
|
void *priv_data))
|
||||||
{
|
{
|
||||||
struct pcmcia_device *link = comedi_to_pcmcia_dev(dev);
|
struct pcmcia_device *link = comedi_to_pcmcia_dev(dev);
|
||||||
int ret;
|
int ret;
|
||||||
|
|
|
@ -24,19 +24,21 @@
|
||||||
|
|
||||||
#include "comedidev.h"
|
#include "comedidev.h"
|
||||||
|
|
||||||
struct pcmcia_device *comedi_to_pcmcia_dev(struct comedi_device *);
|
struct pcmcia_device *comedi_to_pcmcia_dev(struct comedi_device *dev);
|
||||||
|
|
||||||
int comedi_pcmcia_enable(struct comedi_device *,
|
int comedi_pcmcia_enable(struct comedi_device *dev,
|
||||||
int (*conf_check)(struct pcmcia_device *, void *));
|
int (*conf_check)(struct pcmcia_device *p_dev,
|
||||||
void comedi_pcmcia_disable(struct comedi_device *);
|
void *priv_data));
|
||||||
|
void comedi_pcmcia_disable(struct comedi_device *dev);
|
||||||
|
|
||||||
int comedi_pcmcia_auto_config(struct pcmcia_device *, struct comedi_driver *);
|
int comedi_pcmcia_auto_config(struct pcmcia_device *link,
|
||||||
void comedi_pcmcia_auto_unconfig(struct pcmcia_device *);
|
struct comedi_driver *driver);
|
||||||
|
void comedi_pcmcia_auto_unconfig(struct pcmcia_device *link);
|
||||||
|
|
||||||
int comedi_pcmcia_driver_register(struct comedi_driver *,
|
int comedi_pcmcia_driver_register(struct comedi_driver *comedi_driver,
|
||||||
struct pcmcia_driver *);
|
struct pcmcia_driver *pcmcia_driver);
|
||||||
void comedi_pcmcia_driver_unregister(struct comedi_driver *,
|
void comedi_pcmcia_driver_unregister(struct comedi_driver *comedi_driver,
|
||||||
struct pcmcia_driver *);
|
struct pcmcia_driver *pcmcia_driver);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* module_comedi_pcmcia_driver() - Helper macro for registering a comedi
|
* module_comedi_pcmcia_driver() - Helper macro for registering a comedi
|
||||||
|
|
Loading…
Reference in New Issue