#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/pci.h>
#include <linux/pci_hotplug.h>
#include <linux/acpi.h>
#include <linux/pci-acpi.h>
#include <linux/slab.h>
Go to the source code of this file.
|
#define | MY_NAME "acpi_pcihp" |
|
#define | dbg(fmt, arg...) do { if (debug_acpi) printk(KERN_DEBUG "%s: %s: " fmt , MY_NAME , __func__ , ## arg); } while (0) |
|
#define | err(format, arg...) printk(KERN_ERR "%s: " format , MY_NAME , ## arg) |
|
#define | info(format, arg...) printk(KERN_INFO "%s: " format , MY_NAME , ## arg) |
|
#define | warn(format, arg...) printk(KERN_WARNING "%s: " format , MY_NAME , ## arg) |
|
#define | METHOD_NAME__SUN "_SUN" |
|
#define | METHOD_NAME_OSHP "OSHP" |
|
#define METHOD_NAME__SUN "_SUN" |
#define METHOD_NAME_OSHP "OSHP" |
#define MY_NAME "acpi_pcihp" |
acpi_get_hp_hw_control_from_firmware : the pci_dev of the bridge that has a hotplug controller : requested control bits for _OSC
Attempt to take hotplug control from firmware.
Definition at line 335 of file acpi_pcihp.c.
acpi_pcihp_check_ejectable - check if handle is ejectable ACPI PCI slot : the PCI bus of the PCI slot corresponding to 'handle' : ACPI handle to check
Return 1 if handle is ejectable PCI slot, 0 otherwise.
Definition at line 435 of file acpi_pcihp.c.
acpi_pci_detect_ejectable - check if the PCI bus has ejectable slots - handle of the PCI bus to scan
Returns 1 if the PCI bus has ACPI based ejectable slots, 0 otherwise.
Definition at line 466 of file acpi_pcihp.c.
module_param |
( |
debug_acpi |
, |
|
|
bool |
, |
|
|
0644 |
|
|
) |
| |