aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH Hartley Sweeten <hartleys@visionengravers.com>2012-08-16 22:47:26 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-08-17 11:14:32 -0400
commitaeb0ca6e72740f562b6eff5fa59a88107a8af8c9 (patch)
tree3fb45ef539ce6d34e64060bc4d9a5d231535ac56
parent2d069fbed1fa367e5e5f59b6723898b92b3b80ba (diff)
staging: comedi: cb_pcimdda: remove REG_SZ and REGS_BARINDEX macros
The REG_SZ macro isn't being use. Both macros use the 'thisboard' macro which relys on a local variable having a specific name. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Cc: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/comedi/drivers/cb_pcimdda.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/staging/comedi/drivers/cb_pcimdda.c b/drivers/staging/comedi/drivers/cb_pcimdda.c
index a80146133c04..04a9d5b95803 100644
--- a/drivers/staging/comedi/drivers/cb_pcimdda.c
+++ b/drivers/staging/comedi/drivers/cb_pcimdda.c
@@ -135,9 +135,6 @@ static const struct board_struct boards[] = {
135 */ 135 */
136#define thisboard ((const struct board_struct *)dev->board_ptr) 136#define thisboard ((const struct board_struct *)dev->board_ptr)
137 137
138#define REG_SZ (thisboard->reg_sz)
139#define REGS_BADRINDEX (thisboard->regs_badrindex)
140
141/* 138/*
142 * this structure is for data unique to this hardware driver. If 139 * this structure is for data unique to this hardware driver. If
143 * several hardware drivers keep similar information in this structure, 140 * several hardware drivers keep similar information in this structure,
@@ -406,7 +403,7 @@ static int probe(struct comedi_device *dev, const struct comedi_devconfig *it)
406 } 403 }
407 registers = 404 registers =
408 pci_resource_start(devpriv->pci_dev, 405 pci_resource_start(devpriv->pci_dev,
409 REGS_BADRINDEX); 406 thisboard->regs_badrindex);
410 devpriv->registers = registers; 407 devpriv->registers = registers;
411 devpriv->dio_registers 408 devpriv->dio_registers
412 = devpriv->registers + thisboard->dio_offset; 409 = devpriv->registers + thisboard->dio_offset;