Skip to content

Commit

Permalink
staging/comedi/ni_daq_dio24: Convert to module_comedi_pcmcia_driver
Browse files Browse the repository at this point in the history
This patch removes the boring init/exit functions with the new
module_comedi_pcmcia_driver macro.

Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Peter Huewe authored and Greg Kroah-Hartman committed Jan 18, 2013
1 parent d607ffa commit cb798cc
Showing 1 changed file with 1 addition and 28 deletions.
29 changes: 1 addition & 28 deletions drivers/staging/comedi/drivers/ni_daq_dio24.c
Original file line number Diff line number Diff line change
Expand Up @@ -318,31 +318,4 @@ static struct pcmcia_driver dio24_cs_driver = {
.name = "ni_daq_dio24",
};

static int __init init_dio24_cs(void)
{
printk("ni_daq_dio24: HOLA SOY YO!\n");
pcmcia_register_driver(&dio24_cs_driver);
return 0;
}

static void __exit exit_dio24_cs(void)
{
pcmcia_unregister_driver(&dio24_cs_driver);
}

int __init init_module(void)
{
int ret;

ret = init_dio24_cs();
if (ret < 0)
return ret;

return comedi_driver_register(&driver_dio24);
}

void __exit cleanup_module(void)
{
exit_dio24_cs();
comedi_driver_unregister(&driver_dio24);
}
module_comedi_pcmcia_driver(driver_dio24, dio24_cs_driver);

0 comments on commit cb798cc

Please sign in to comment.