Commit 593d11c5 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: amplc_dio200: tidy up {comedi, pci}_driver declarations

For aesthetics, add some whitespace to these declarations.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 849db1aa
...@@ -400,10 +400,10 @@ static void dio200_pci_detach(struct comedi_device *dev) ...@@ -400,10 +400,10 @@ static void dio200_pci_detach(struct comedi_device *dev)
} }
static struct comedi_driver dio200_pci_comedi_driver = { static struct comedi_driver dio200_pci_comedi_driver = {
.driver_name = "amplc_dio200_pci", .driver_name = "amplc_dio200_pci",
.module = THIS_MODULE, .module = THIS_MODULE,
.auto_attach = dio200_pci_auto_attach, .auto_attach = dio200_pci_auto_attach,
.detach = dio200_pci_detach, .detach = dio200_pci_detach,
}; };
static const struct pci_device_id dio200_pci_table[] = { static const struct pci_device_id dio200_pci_table[] = {
...@@ -424,10 +424,10 @@ static int dio200_pci_probe(struct pci_dev *dev, const struct pci_device_id *id) ...@@ -424,10 +424,10 @@ static int dio200_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)
} }
static struct pci_driver dio200_pci_pci_driver = { static struct pci_driver dio200_pci_pci_driver = {
.name = "amplc_dio200_pci", .name = "amplc_dio200_pci",
.id_table = dio200_pci_table, .id_table = dio200_pci_table,
.probe = dio200_pci_probe, .probe = dio200_pci_probe,
.remove = comedi_pci_auto_unconfig, .remove = comedi_pci_auto_unconfig,
}; };
module_comedi_pci_driver(dio200_pci_comedi_driver, dio200_pci_pci_driver); module_comedi_pci_driver(dio200_pci_comedi_driver, dio200_pci_pci_driver);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment