Skip to content

Commit

Permalink
staging: comedi: me_daq: replace 'result' and 'error' with 'ret'
Browse files Browse the repository at this point in the history
Two local variables are used in me_attach_pci() to check for errors
when calling other functions, 'result' and 'error'. Remove both of
them and just use a common 'ret' variable.

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>
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Oct 26, 2012
1 parent 52c4cbe commit 4bb153b
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions drivers/staging/comedi/drivers/me_daq.c
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ static int me_attach_pci(struct comedi_device *dev, struct pci_dev *pcidev)
resource_size_t swap_regbase_tmp;
unsigned long swap_regbase_size_tmp;
resource_size_t regbase_tmp;
int result, error;
int ret;

board = me_find_boardinfo(dev, pcidev);
if (!board)
Expand Down Expand Up @@ -687,23 +687,23 @@ static int me_attach_pci(struct comedi_device *dev, struct pci_dev *pcidev)
plx_regbase_tmp = swap_regbase_tmp;
swap_regbase_tmp = regbase_tmp;

result = pci_write_config_dword(pcidev,
ret = pci_write_config_dword(pcidev,
PCI_BASE_ADDRESS_0,
plx_regbase_tmp);
if (result != PCIBIOS_SUCCESSFUL)
if (ret != PCIBIOS_SUCCESSFUL)
return -EIO;

result = pci_write_config_dword(pcidev,
ret = pci_write_config_dword(pcidev,
PCI_BASE_ADDRESS_5,
swap_regbase_tmp);
if (result != PCIBIOS_SUCCESSFUL)
if (ret != PCIBIOS_SUCCESSFUL)
return -EIO;
} else {
plx_regbase_tmp -= 0x80;
result = pci_write_config_dword(pcidev,
ret = pci_write_config_dword(pcidev,
PCI_BASE_ADDRESS_0,
plx_regbase_tmp);
if (result != PCIBIOS_SUCCESSFUL)
if (ret != PCIBIOS_SUCCESSFUL)
return -EIO;
}
}
Expand All @@ -716,15 +716,15 @@ static int me_attach_pci(struct comedi_device *dev, struct pci_dev *pcidev)

/* Download firmware and reset card */
if (board->device_id == ME2600_DEVICE_ID) {
result = me2600_upload_firmware(dev);
if (result < 0)
return result;
ret = me2600_upload_firmware(dev);
if (ret < 0)
return ret;
}
me_reset(dev);

error = comedi_alloc_subdevices(dev, 3);
if (error)
return error;
ret = comedi_alloc_subdevices(dev, 3);
if (ret)
return ret;

s = &dev->subdevices[0];
s->type = COMEDI_SUBD_AI;
Expand Down

0 comments on commit 4bb153b

Please sign in to comment.