pci-acpi.h 866 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10
/*
 * File		pci-acpi.h
 *
 * Copyright (C) 2004 Intel
 * Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com)
 */

#ifndef _PCI_ACPI_H_
#define _PCI_ACPI_H_

11 12
#include <linux/acpi.h>

L
Linus Torvalds 已提交
13
#ifdef CONFIG_ACPI
14 15
static inline acpi_handle acpi_find_root_bridge_handle(struct pci_dev *pdev)
{
16 17
	struct pci_bus *pbus = pdev->bus;
	/* Find a PCI root bus */
18
	while (!pci_is_root_bus(pbus))
19 20 21
		pbus = pbus->parent;
	return acpi_get_pci_rootbridge_handle(pci_domain_nr(pbus),
					      pbus->number);
22
}
23 24 25

static inline acpi_handle acpi_pci_get_bridge_handle(struct pci_bus *pbus)
{
26
	if (!pci_is_root_bus(pbus))
27 28 29
		return DEVICE_ACPI_HANDLE(&(pbus->self->dev));
	return acpi_get_pci_rootbridge_handle(pci_domain_nr(pbus),
					      pbus->number);
30
}
L
Linus Torvalds 已提交
31
#else
32 33
static inline acpi_handle acpi_find_root_bridge_handle(struct pci_dev *pdev)
{ return NULL; }
L
Linus Torvalds 已提交
34 35 36
#endif

#endif	/* _PCI_ACPI_H_ */