Commit 39eca2a0 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

Staging: comedi: me_daq: fix sparse issues

This fixes the sparse issues that the tool had with the me_daq
driver.

Cc: Michael Hillmann <hillmann@syscongroup.de>
Cc: David Schleef <ds@schleef.org>
Cc: Frank Mori Hess <fmhess@users.sourceforge.net>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 5e08c198
...@@ -234,7 +234,7 @@ static const struct me_board me_boards[] = { ...@@ -234,7 +234,7 @@ static const struct me_board me_boards[] = {
.ao_channel_nbr = 0, .ao_channel_nbr = 0,
.ao_resolution = 0, .ao_resolution = 0,
.ao_resolution_mask = 0, .ao_resolution_mask = 0,
.ao_range_list = 0, .ao_range_list = NULL,
.ai_channel_nbr = 16, .ai_channel_nbr = 16,
/* Analog Input */ /* Analog Input */
.ai_resolution = 12, .ai_resolution = 12,
...@@ -257,8 +257,8 @@ COMEDI_PCI_INITCLEANUP(me_driver, me_pci_table); ...@@ -257,8 +257,8 @@ COMEDI_PCI_INITCLEANUP(me_driver, me_pci_table);
/* Private data structure */ /* Private data structure */
struct me_private_data { struct me_private_data {
struct pci_dev *pci_device; struct pci_dev *pci_device;
void *plx_regbase; /* PLX configuration base address */ void __iomem *plx_regbase; /* PLX configuration base address */
void *me_regbase; /* Base address of the Meilhaus card */ void __iomem *me_regbase; /* Base address of the Meilhaus card */
unsigned long plx_regbase_size; /* Size of PLX configuration space */ unsigned long plx_regbase_size; /* Size of PLX configuration space */
unsigned long me_regbase_size; /* Size of Meilhaus space */ unsigned long me_regbase_size; /* Size of Meilhaus space */
......
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