mirror of https://gitee.com/openkylin/linux.git
PCI: remove CONFIG_PCI_BUS_ADDR_T_64BIT
This symbol is now always identical to CONFIG_ARCH_DMA_ADDR_T_64BIT, so remove it. Signed-off-by: Christoph Hellwig <hch@lst.de> Acked-by: Bjorn Helgaas <bhelgaas@google.com>
This commit is contained in:
parent
4965a68780
commit
8e6390795e
|
@ -5,10 +5,6 @@
|
||||||
|
|
||||||
source "drivers/pci/pcie/Kconfig"
|
source "drivers/pci/pcie/Kconfig"
|
||||||
|
|
||||||
config PCI_BUS_ADDR_T_64BIT
|
|
||||||
def_bool y if (ARCH_DMA_ADDR_T_64BIT || 64BIT)
|
|
||||||
depends on PCI
|
|
||||||
|
|
||||||
config PCI_MSI
|
config PCI_MSI
|
||||||
bool "Message Signaled Interrupts (MSI and MSI-X)"
|
bool "Message Signaled Interrupts (MSI and MSI-X)"
|
||||||
depends on PCI
|
depends on PCI
|
||||||
|
|
|
@ -120,7 +120,7 @@ int devm_request_pci_bus_resources(struct device *dev,
|
||||||
EXPORT_SYMBOL_GPL(devm_request_pci_bus_resources);
|
EXPORT_SYMBOL_GPL(devm_request_pci_bus_resources);
|
||||||
|
|
||||||
static struct pci_bus_region pci_32_bit = {0, 0xffffffffULL};
|
static struct pci_bus_region pci_32_bit = {0, 0xffffffffULL};
|
||||||
#ifdef CONFIG_PCI_BUS_ADDR_T_64BIT
|
#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
|
||||||
static struct pci_bus_region pci_64_bit = {0,
|
static struct pci_bus_region pci_64_bit = {0,
|
||||||
(pci_bus_addr_t) 0xffffffffffffffffULL};
|
(pci_bus_addr_t) 0xffffffffffffffffULL};
|
||||||
static struct pci_bus_region pci_high = {(pci_bus_addr_t) 0x100000000ULL,
|
static struct pci_bus_region pci_high = {(pci_bus_addr_t) 0x100000000ULL,
|
||||||
|
@ -230,7 +230,7 @@ int pci_bus_alloc_resource(struct pci_bus *bus, struct resource *res,
|
||||||
resource_size_t),
|
resource_size_t),
|
||||||
void *alignf_data)
|
void *alignf_data)
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_PCI_BUS_ADDR_T_64BIT
|
#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
if (res->flags & IORESOURCE_MEM_64) {
|
if (res->flags & IORESOURCE_MEM_64) {
|
||||||
|
|
|
@ -670,7 +670,7 @@ int raw_pci_read(unsigned int domain, unsigned int bus, unsigned int devfn,
|
||||||
int raw_pci_write(unsigned int domain, unsigned int bus, unsigned int devfn,
|
int raw_pci_write(unsigned int domain, unsigned int bus, unsigned int devfn,
|
||||||
int reg, int len, u32 val);
|
int reg, int len, u32 val);
|
||||||
|
|
||||||
#ifdef CONFIG_PCI_BUS_ADDR_T_64BIT
|
#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
|
||||||
typedef u64 pci_bus_addr_t;
|
typedef u64 pci_bus_addr_t;
|
||||||
#else
|
#else
|
||||||
typedef u32 pci_bus_addr_t;
|
typedef u32 pci_bus_addr_t;
|
||||||
|
|
Loading…
Reference in New Issue