]> git.karo-electronics.de Git - karo-tx-linux.git/commit
PCI: designware: Use exact access size in dw_pcie_cfg_read()
authorGabriele Paoloni <gabriele.paoloni@huawei.com>
Thu, 8 Oct 2015 19:27:43 +0000 (14:27 -0500)
committerBjorn Helgaas <bhelgaas@google.com>
Thu, 8 Oct 2015 19:27:43 +0000 (14:27 -0500)
commit91710c09707658bf14323a3bd6aa2eb22b8fd720
treeaef7d063a1baa25ddf71c83c2f1e155f83e6ad69
parentcfda37acc34a84f479f1262edfe796f7bb168531
PCI: designware: Use exact access size in dw_pcie_cfg_read()

dw_pcie_cfg_write() uses the exact 8-, 16-, or 32-bit access size
requested, but dw_pcie_cfg_read() previously performed a 32-bit read and
masked out the bits requested.

Use the exact access size in dw_pcie_cfg_read().  For example, if we want
an 8-bit read, use readb() instead of using readl() and masking out the 8
bits we need.  This makes it symmetric with dw_pcie_cfg_write().

[bhelgaas: split into separate patch, set *val = 0 in failure case]
Signed-off-by: Gabriele Paoloni <gabriele.paoloni@huawei.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
drivers/pci/host/pcie-designware.c