diff options
| author | Bjorn Helgaas <[email protected]> | 2007-04-25 18:20:58 +0000 |
|---|---|---|
| committer | Len Brown <[email protected]> | 2007-04-25 18:20:58 +0000 |
| commit | 0c0e8921018dbb4fe189a1034f80ac32553bc7bc (patch) | |
| tree | dc3e8fe24dfe58a3c6a71b5c8a22e4ea74799987 /drivers/acpi/scan.c | |
| parent | ACPI: Remove duplicate definitions for _STA bits (diff) | |
| download | kernel-0c0e8921018dbb4fe189a1034f80ac32553bc7bc.tar.gz kernel-0c0e8921018dbb4fe189a1034f80ac32553bc7bc.zip | |
ACPI: use _STA bit names rather than 0x0F
Be explicit about what "device->status = 0x0F" really means.
syntax only.
Signed-off-by: Bjorn Helgaas <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Len Brown <[email protected]>
Diffstat (limited to 'drivers/acpi/scan.c')
| -rw-r--r-- | drivers/acpi/scan.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/acpi/scan.c b/drivers/acpi/scan.c index bb0e0da39fb1..d80dd84e5bfd 100644 --- a/drivers/acpi/scan.c +++ b/drivers/acpi/scan.c @@ -1068,7 +1068,9 @@ acpi_add_single_object(struct acpi_device **child, } break; default: - STRUCT_TO_INT(device->status) = 0x0F; + STRUCT_TO_INT(device->status) = + ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED | + ACPI_STA_DEVICE_UI | ACPI_STA_DEVICE_FUNCTIONING; break; } |
