Skip to content

Commit

Permalink
MIPS: ath79: remove superfluous alignment checks from pci-ar724x.c
Browse files Browse the repository at this point in the history
The alignment of the 'where' parameters are checked
in the core PCI code already.

Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/3492/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
  • Loading branch information
Gabor Juhos authored and Ralf Baechle committed May 15, 2012
1 parent c198441 commit ffdce46
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions arch/mips/pci/pci-ar724x.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ static int ar724x_pci_read(struct pci_bus *bus, unsigned int devfn, int where,
if (devfn)
return PCIBIOS_DEVICE_NOT_FOUND;

if (where & (size - 1))
return PCIBIOS_BAD_REGISTER_NUMBER;

base = ar724x_pci_devcfg_base;

spin_lock_irqsave(&ar724x_pci_lock, flags);
Expand Down Expand Up @@ -73,9 +70,6 @@ static int ar724x_pci_write(struct pci_bus *bus, unsigned int devfn, int where,
if (devfn)
return PCIBIOS_DEVICE_NOT_FOUND;

if (where & (size - 1))
return PCIBIOS_BAD_REGISTER_NUMBER;

base = ar724x_pci_devcfg_base;

spin_lock_irqsave(&ar724x_pci_lock, flags);
Expand Down

0 comments on commit ffdce46

Please sign in to comment.