common.c (cbecf716ca618fd44feda6bd9a64a8179d031fc5) common.c (06dc660e6eb8817c4c379d2ca290ae0b3f77c69f)
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Low-Level PCI Support for PC
4 *
5 * (c) 1999--2000 Martin Mares <mj@ucw.cz>
6 */
7
8#include <linux/sched.h>

--- 618 unchanged lines hidden (view full) ---

627}
628
629static void set_dev_domain_options(struct pci_dev *pdev)
630{
631 if (is_vmd(pdev->bus))
632 pdev->hotplug_user_indicators = 1;
633}
634
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Low-Level PCI Support for PC
4 *
5 * (c) 1999--2000 Martin Mares <mj@ucw.cz>
6 */
7
8#include <linux/sched.h>

--- 618 unchanged lines hidden (view full) ---

627}
628
629static void set_dev_domain_options(struct pci_dev *pdev)
630{
631 if (is_vmd(pdev->bus))
632 pdev->hotplug_user_indicators = 1;
633}
634
635int pcibios_add_device(struct pci_dev *dev)
635int pcibios_device_add(struct pci_dev *dev)
636{
637 struct pci_setup_rom *rom;
638 struct irq_domain *msidom;
639 struct setup_data *data;
640 u64 pa_data;
641
642 pa_data = boot_params.hdr.setup_data;
643 while (pa_data) {

--- 83 unchanged lines hidden ---
636{
637 struct pci_setup_rom *rom;
638 struct irq_domain *msidom;
639 struct setup_data *data;
640 u64 pa_data;
641
642 pa_data = boot_params.hdr.setup_data;
643 while (pa_data) {

--- 83 unchanged lines hidden ---