staging: comedi: mite: remove mite_struct member 'mite_phys_addr'
This member of mite_struct is set but never used. Just remove it. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Reviewed-by: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
0d9bfc2412
commit
0db6624ae0
|
@ -106,7 +106,6 @@ int mite_setup2(struct comedi_device *dev,
|
|||
"Failed to remap mite io memory address\n");
|
||||
return -ENOMEM;
|
||||
}
|
||||
mite->mite_phys_addr = pci_resource_start(mite->pcidev, 0);
|
||||
|
||||
dev->mmio = pci_ioremap_bar(mite->pcidev, 1);
|
||||
if (!dev->mmio) {
|
||||
|
|
|
@ -54,7 +54,6 @@ struct mite_channel {
|
|||
|
||||
struct mite_struct {
|
||||
struct pci_dev *pcidev;
|
||||
resource_size_t mite_phys_addr;
|
||||
void __iomem *mite_io_addr;
|
||||
resource_size_t daq_phys_addr;
|
||||
struct mite_channel channels[MAX_MITE_DMA_CHANNELS];
|
||||
|
|
Loading…
Reference in New Issue