Commit 849db1aa authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: amplc_dio200: tidy up comedi_driver declaration

For aesthetics, add some whitespace to the declaration.
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 85d7c9ab
...@@ -270,13 +270,13 @@ static void dio200_detach(struct comedi_device *dev) ...@@ -270,13 +270,13 @@ static void dio200_detach(struct comedi_device *dev)
} }
static struct comedi_driver amplc_dio200_driver = { static struct comedi_driver amplc_dio200_driver = {
.driver_name = "amplc_dio200", .driver_name = "amplc_dio200",
.module = THIS_MODULE, .module = THIS_MODULE,
.attach = dio200_attach, .attach = dio200_attach,
.detach = dio200_detach, .detach = dio200_detach,
.board_name = &dio200_isa_boards[0].name, .board_name = &dio200_isa_boards[0].name,
.offset = sizeof(struct dio200_board), .offset = sizeof(struct dio200_board),
.num_names = ARRAY_SIZE(dio200_isa_boards), .num_names = ARRAY_SIZE(dio200_isa_boards),
}; };
module_comedi_driver(amplc_dio200_driver); module_comedi_driver(amplc_dio200_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