Commit 2f485d93 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman
Browse files

staging: comedi: ni_daq_700: cleanup to the pcmcia_driver declaration



For aesthetic reasons, add some whitespace to the declaration
of the pcmcia_driver and reorder it a bit.

Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Cc: Frank Mori Hess <fmhess@users.sourceforge.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f9039829
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -430,13 +430,13 @@ static const struct pcmcia_device_id dio700_cs_ids[] = {
MODULE_DEVICE_TABLE(pcmcia, dio700_cs_ids);

static struct pcmcia_driver dio700_cs_driver = {
	.name		= "ni_daq_700",
	.owner		= THIS_MODULE,
	.probe		= dio700_cs_attach,
	.remove		= dio700_cs_detach,
	.suspend	= dio700_cs_suspend,
	.resume		= dio700_cs_resume,
	.id_table	= dio700_cs_ids,
	.owner = THIS_MODULE,
	.name = "ni_daq_700",
};

static int __init dio700_cs_init(void)