]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
Merge branch 'pci/misc'
authorBjorn Helgaas <bhelgaas@google.com>
Tue, 31 Aug 2021 20:09:36 +0000 (15:09 -0500)
committerBjorn Helgaas <bhelgaas@google.com>
Tue, 31 Aug 2021 20:09:36 +0000 (15:09 -0500)
- Add pci_numachip_init() declaration (Krzysztof Wilczyński)

- Allocate pci_dev_str_match_path() string atomically (Dan Carpenter)

- Drop error message when Precision Time Measurement supported but not
  enabled (Jakub Kicinski)

- Correct the pci_iomap.h header guard #endif comment (Jonathan Cameron)

- Add schedule point in proc_bus_pci_read() (Krzysztof Wilczyński)

- Make saved capability state private to core (Bjorn Helgaas)

- Sync __pci_register_driver() stub for CONFIG_PCI=n (Andy Shevchenko)

* pci/misc:
  PCI: Sync __pci_register_driver() stub for CONFIG_PCI=n
  PCI: Make saved capability state private to core
  PCI: Add schedule point in proc_bus_pci_read()
  PCI: Correct the pci_iomap.h header guard #endif comment
  PCI/PTM: Remove error message at boot
  PCI: Fix pci_dev_str_match_path() alloc while atomic bug
  x86/PCI: Add pci_numachip_init() declaration

# Conflicts:
# include/linux/pci.h

1  2 
drivers/pci/pci.c
drivers/pci/pci.h
include/linux/pci.h

Simple merge
Simple merge
index a6677ba64109c9a6597989c582dd56d3e8124b2d,a662f6c1f120cc04236f3f17c9bdf20c431b16b3..e5ef11da1072feecc01dff289e1e4187b21fa874
@@@ -294,26 -288,9 +294,14 @@@ enum pci_bus_speed 
  enum pci_bus_speed pcie_get_speed_cap(struct pci_dev *dev);
  enum pcie_link_width pcie_get_width_cap(struct pci_dev *dev);
  
- struct pci_cap_saved_data {
-       u16             cap_nr;
-       bool            cap_extended;
-       unsigned int    size;
-       u32             data[];
- };
- struct pci_cap_saved_state {
-       struct hlist_node               next;
-       struct pci_cap_saved_data       cap;
- };
 +struct pci_vpd {
 +      struct mutex    lock;
 +      unsigned int    len;
 +      u8              cap;
 +};
 +
  struct irq_affinity;
  struct pcie_link_state;
 -struct pci_vpd;
  struct pci_sriov;
  struct pci_p2pdma;
  struct rcec_ea;