diff options
author | Jiang Liu <liuj97@gmail.com> | 2013-04-12 01:44:19 -0400 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2013-04-12 17:38:25 -0400 |
commit | ce15d873d05ebf3bf38579c4e0252140e28f1781 (patch) | |
tree | dc5442c445628ddcd92cfc991b2be035085bc019 /drivers/pci | |
parent | 3a0e40beefc20852191ed65d53e1b82d95ac11b8 (diff) |
PCI: acpiphp: Replace local macros with standard ACPI macros
Replace local defined macros (ACPI_STA_xxx) with standard ACPI macros
(ACPI_STA_DEVICE_xxx).
Signed-off-by: Jiang Liu <jiang.liu@huawei.com>
Signed-off-by: Yijing Wang <wangyijing@huawei.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Yinghai Lu <yinghai@kernel.org>
Cc: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
Cc: Toshi Kani <toshi.kani@hp.com>
Diffstat (limited to 'drivers/pci')
-rw-r--r-- | drivers/pci/hotplug/acpiphp.h | 4 | ||||
-rw-r--r-- | drivers/pci/hotplug/acpiphp_glue.c | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/drivers/pci/hotplug/acpiphp.h b/drivers/pci/hotplug/acpiphp.h index b70ac00a117e..1b311f9db82d 100644 --- a/drivers/pci/hotplug/acpiphp.h +++ b/drivers/pci/hotplug/acpiphp.h | |||
@@ -146,10 +146,6 @@ struct acpiphp_attention_info | |||
146 | #define ACPI_PCI_HOST_HID "PNP0A03" | 146 | #define ACPI_PCI_HOST_HID "PNP0A03" |
147 | 147 | ||
148 | /* ACPI _STA method value (ignore bit 4; battery present) */ | 148 | /* ACPI _STA method value (ignore bit 4; battery present) */ |
149 | #define ACPI_STA_PRESENT (0x00000001) | ||
150 | #define ACPI_STA_ENABLED (0x00000002) | ||
151 | #define ACPI_STA_SHOW_IN_UI (0x00000004) | ||
152 | #define ACPI_STA_FUNCTIONING (0x00000008) | ||
153 | #define ACPI_STA_ALL (0x0000000f) | 149 | #define ACPI_STA_ALL (0x0000000f) |
154 | 150 | ||
155 | /* bridge flags */ | 151 | /* bridge flags */ |
diff --git a/drivers/pci/hotplug/acpiphp_glue.c b/drivers/pci/hotplug/acpiphp_glue.c index a1c8dd67aae1..718464f8fd40 100644 --- a/drivers/pci/hotplug/acpiphp_glue.c +++ b/drivers/pci/hotplug/acpiphp_glue.c | |||
@@ -487,7 +487,7 @@ static int add_bridge(struct acpi_pci_root *root) | |||
487 | dbg("%s: _STA evaluation failure\n", __func__); | 487 | dbg("%s: _STA evaluation failure\n", __func__); |
488 | return 0; | 488 | return 0; |
489 | } | 489 | } |
490 | if ((tmp & ACPI_STA_FUNCTIONING) == 0) | 490 | if ((tmp & ACPI_STA_DEVICE_FUNCTIONING) == 0) |
491 | /* don't register this object */ | 491 | /* don't register this object */ |
492 | return 0; | 492 | return 0; |
493 | } | 493 | } |
@@ -1389,7 +1389,7 @@ u8 acpiphp_get_latch_status(struct acpiphp_slot *slot) | |||
1389 | 1389 | ||
1390 | sta = get_slot_status(slot); | 1390 | sta = get_slot_status(slot); |
1391 | 1391 | ||
1392 | return (sta & ACPI_STA_SHOW_IN_UI) ? 0 : 1; | 1392 | return (sta & ACPI_STA_DEVICE_UI) ? 0 : 1; |
1393 | } | 1393 | } |
1394 | 1394 | ||
1395 | 1395 | ||