diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-03-14 05:36:03 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2012-05-15 11:49:03 -0400 |
commit | ffdce4668234a113e767edd27aa1331903959106 (patch) | |
tree | f04ac416f4534c1b4a6f04ca20d565726f188d66 /arch/mips/pci | |
parent | c198441a3f3007752c551a32d5c426f48ae8712d (diff) |
MIPS: ath79: remove superfluous alignment checks from pci-ar724x.c
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>
Diffstat (limited to 'arch/mips/pci')
-rw-r--r-- | arch/mips/pci/pci-ar724x.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/arch/mips/pci/pci-ar724x.c b/arch/mips/pci/pci-ar724x.c index 22f5e5bc4dfe..342bf4ab8960 100644 --- a/arch/mips/pci/pci-ar724x.c +++ b/arch/mips/pci/pci-ar724x.c | |||
@@ -28,9 +28,6 @@ static int ar724x_pci_read(struct pci_bus *bus, unsigned int devfn, int where, | |||
28 | if (devfn) | 28 | if (devfn) |
29 | return PCIBIOS_DEVICE_NOT_FOUND; | 29 | return PCIBIOS_DEVICE_NOT_FOUND; |
30 | 30 | ||
31 | if (where & (size - 1)) | ||
32 | return PCIBIOS_BAD_REGISTER_NUMBER; | ||
33 | |||
34 | base = ar724x_pci_devcfg_base; | 31 | base = ar724x_pci_devcfg_base; |
35 | 32 | ||
36 | spin_lock_irqsave(&ar724x_pci_lock, flags); | 33 | spin_lock_irqsave(&ar724x_pci_lock, flags); |
@@ -73,9 +70,6 @@ static int ar724x_pci_write(struct pci_bus *bus, unsigned int devfn, int where, | |||
73 | if (devfn) | 70 | if (devfn) |
74 | return PCIBIOS_DEVICE_NOT_FOUND; | 71 | return PCIBIOS_DEVICE_NOT_FOUND; |
75 | 72 | ||
76 | if (where & (size - 1)) | ||
77 | return PCIBIOS_BAD_REGISTER_NUMBER; | ||
78 | |||
79 | base = ar724x_pci_devcfg_base; | 73 | base = ar724x_pci_devcfg_base; |
80 | 74 | ||
81 | spin_lock_irqsave(&ar724x_pci_lock, flags); | 75 | spin_lock_irqsave(&ar724x_pci_lock, flags); |