linux-stable/drivers/ntb/hw/intel
Cai Huoqing d353fb4b70 ntb: intel: Remove redundant pci_clear_master
Remove pci_clear_master to simplify the code,
the bus-mastering is also cleared in do_pci_disable_device,
like this:
./drivers/pci/pci.c:2197
static void do_pci_disable_device(struct pci_dev *dev)
{
	u16 pci_command;

	pci_read_config_word(dev, PCI_COMMAND, &pci_command);
	if (pci_command & PCI_COMMAND_MASTER) {
		pci_command &= ~PCI_COMMAND_MASTER;
		pci_write_config_word(dev, PCI_COMMAND, pci_command);
	}

	pcibios_disable_device(dev);
}.
And dev->is_busmaster is set to 0 in pci_disable_device.

Signed-off-by: Cai Huoqing <cai.huoqing@linux.dev>
Acked-by: Dave Jiang <dave.jiang@intel.com>
Signed-off-by: Jon Mason <jdmason@kudzu.us>
2023-07-08 11:02:37 -04:00
..
Kconfig treewide: Add SPDX license identifier - Makefile/Kconfig 2019-05-21 10:50:46 +02:00
Makefile ntb: intel: Add Icelake (gen4) support for Intel NTB 2020-04-20 10:16:23 -04:00
ntb_hw_gen1.c ntb: intel: Remove redundant pci_clear_master 2023-07-08 11:02:37 -04:00
ntb_hw_gen1.h ntb: intel: add Intel NTB LTR vendor support for gen4 NTB 2020-12-06 18:18:03 -05:00
ntb_hw_gen3.c ntb: intel: Add Icelake (gen4) support for Intel NTB 2020-04-20 10:16:23 -04:00
ntb_hw_gen3.h ntb: intel: constify ioreadX() iomem argument (as in generic implementation) 2020-08-14 19:56:57 -07:00
ntb_hw_gen4.c ntb: intel: add GNR support for Intel PCIe gen5 NTB 2022-08-09 11:54:41 -04:00
ntb_hw_gen4.h ntb: intel: fix port config status offset for SPR 2022-01-28 10:19:16 -05:00
ntb_hw_intel.h ntb: intel: add GNR support for Intel PCIe gen5 NTB 2022-08-09 11:54:41 -04:00