mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-12 00:38:55 +00:00
x86/PCI: Use pci_is_bridge() to simplify code
Use pci_is_bridge() to simplify code. No functional change. Requires: 326c1cdae741 PCI: Rename pci_is_bridge() to pci_has_subordinate() Requires: 1c86438c9423 PCI: Add new pci_is_bridge() interface Signed-off-by: Yijing Wang <wangyijing@huawei.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
This commit is contained in:
parent
6788a51fe3
commit
56a41f9949
@ -337,9 +337,7 @@ static void pci_fixup_video(struct pci_dev *pdev)
|
|||||||
* type BRIDGE, or CARDBUS. Host to PCI controllers use
|
* type BRIDGE, or CARDBUS. Host to PCI controllers use
|
||||||
* PCI header type NORMAL.
|
* PCI header type NORMAL.
|
||||||
*/
|
*/
|
||||||
if (bridge
|
if (bridge && (pci_is_bridge(bridge))) {
|
||||||
&& ((bridge->hdr_type == PCI_HEADER_TYPE_BRIDGE)
|
|
||||||
|| (bridge->hdr_type == PCI_HEADER_TYPE_CARDBUS))) {
|
|
||||||
pci_read_config_word(bridge, PCI_BRIDGE_CONTROL,
|
pci_read_config_word(bridge, PCI_BRIDGE_CONTROL,
|
||||||
&config);
|
&config);
|
||||||
if (!(config & PCI_BRIDGE_CTL_VGA))
|
if (!(config & PCI_BRIDGE_CTL_VGA))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user