diff options
| -rw-r--r-- | Documentation/ABI/stable/sysfs-acpi-pmprofile | 22 | ||||
| -rw-r--r-- | drivers/acpi/acpica/hwregs.c | 11 | ||||
| -rw-r--r-- | drivers/acpi/bus.c | 8 | ||||
| -rw-r--r-- | drivers/acpi/scan.c | 3 | ||||
| -rw-r--r-- | drivers/acpi/sysfs.c | 14 | ||||
| -rw-r--r-- | drivers/pnp/pnpacpi/rsparser.c | 62 | ||||
| -rw-r--r-- | drivers/thermal/thermal_sys.c | 4 | ||||
| -rw-r--r-- | include/acpi/acpi_drivers.h | 2 | ||||
| -rw-r--r-- | include/acpi/actypes.h | 1 |
9 files changed, 62 insertions, 65 deletions
diff --git a/Documentation/ABI/stable/sysfs-acpi-pmprofile b/Documentation/ABI/stable/sysfs-acpi-pmprofile new file mode 100644 index 000000000000..964c7a8afb26 --- /dev/null +++ b/Documentation/ABI/stable/sysfs-acpi-pmprofile | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | What: /sys/firmware/acpi/pm_profile | ||
| 2 | Date: 03-Nov-2011 | ||
| 3 | KernelVersion: v3.2 | ||
| 4 | Contact: linux-acpi@vger.kernel.org | ||
| 5 | Description: The ACPI pm_profile sysfs interface exports the platform | ||
| 6 | power management (and performance) requirement expectations | ||
| 7 | as provided by BIOS. The integer value is directly passed as | ||
| 8 | retrieved from the FADT ACPI table. | ||
| 9 | Values: For possible values see ACPI specification: | ||
| 10 | 5.2.9 Fixed ACPI Description Table (FADT) | ||
| 11 | Field: Preferred_PM_Profile | ||
| 12 | |||
| 13 | Currently these values are defined by spec: | ||
| 14 | 0 Unspecified | ||
| 15 | 1 Desktop | ||
| 16 | 2 Mobile | ||
| 17 | 3 Workstation | ||
| 18 | 4 Enterprise Server | ||
| 19 | 5 SOHO Server | ||
| 20 | 6 Appliance PC | ||
| 21 | 7 Performance Server | ||
| 22 | >7 Reserved | ||
diff --git a/drivers/acpi/acpica/hwregs.c b/drivers/acpi/acpica/hwregs.c index 55accb7018bb..cc70f3fdcdd1 100644 --- a/drivers/acpi/acpica/hwregs.c +++ b/drivers/acpi/acpica/hwregs.c | |||
| @@ -269,16 +269,17 @@ acpi_status acpi_hw_clear_acpi_status(void) | |||
| 269 | 269 | ||
| 270 | status = acpi_hw_register_write(ACPI_REGISTER_PM1_STATUS, | 270 | status = acpi_hw_register_write(ACPI_REGISTER_PM1_STATUS, |
| 271 | ACPI_BITMASK_ALL_FIXED_STATUS); | 271 | ACPI_BITMASK_ALL_FIXED_STATUS); |
| 272 | if (ACPI_FAILURE(status)) { | 272 | |
| 273 | goto unlock_and_exit; | 273 | acpi_os_release_lock(acpi_gbl_hardware_lock, lock_flags); |
| 274 | } | 274 | |
| 275 | if (ACPI_FAILURE(status)) | ||
| 276 | goto exit; | ||
| 275 | 277 | ||
| 276 | /* Clear the GPE Bits in all GPE registers in all GPE blocks */ | 278 | /* Clear the GPE Bits in all GPE registers in all GPE blocks */ |
| 277 | 279 | ||
| 278 | status = acpi_ev_walk_gpe_list(acpi_hw_clear_gpe_block, NULL); | 280 | status = acpi_ev_walk_gpe_list(acpi_hw_clear_gpe_block, NULL); |
| 279 | 281 | ||
| 280 | unlock_and_exit: | 282 | exit: |
| 281 | acpi_os_release_lock(acpi_gbl_hardware_lock, lock_flags); | ||
| 282 | return_ACPI_STATUS(status); | 283 | return_ACPI_STATUS(status); |
| 283 | } | 284 | } |
| 284 | 285 | ||
diff --git a/drivers/acpi/bus.c b/drivers/acpi/bus.c index 437ddbf0c49a..9ecec98bc76e 100644 --- a/drivers/acpi/bus.c +++ b/drivers/acpi/bus.c | |||
| @@ -911,10 +911,7 @@ void __init acpi_early_init(void) | |||
| 911 | } | 911 | } |
| 912 | #endif | 912 | #endif |
| 913 | 913 | ||
| 914 | status = | 914 | status = acpi_enable_subsystem(~ACPI_NO_ACPI_ENABLE); |
| 915 | acpi_enable_subsystem(~ | ||
| 916 | (ACPI_NO_HARDWARE_INIT | | ||
| 917 | ACPI_NO_ACPI_ENABLE)); | ||
| 918 | if (ACPI_FAILURE(status)) { | 915 | if (ACPI_FAILURE(status)) { |
| 919 | printk(KERN_ERR PREFIX "Unable to enable ACPI\n"); | 916 | printk(KERN_ERR PREFIX "Unable to enable ACPI\n"); |
| 920 | goto error0; | 917 | goto error0; |
| @@ -935,8 +932,7 @@ static int __init acpi_bus_init(void) | |||
| 935 | 932 | ||
| 936 | acpi_os_initialize1(); | 933 | acpi_os_initialize1(); |
| 937 | 934 | ||
| 938 | status = | 935 | status = acpi_enable_subsystem(ACPI_NO_ACPI_ENABLE); |
| 939 | acpi_enable_subsystem(ACPI_NO_HARDWARE_INIT | ACPI_NO_ACPI_ENABLE); | ||
| 940 | if (ACPI_FAILURE(status)) { | 936 | if (ACPI_FAILURE(status)) { |
| 941 | printk(KERN_ERR PREFIX | 937 | printk(KERN_ERR PREFIX |
| 942 | "Unable to start the ACPI Interpreter\n"); | 938 | "Unable to start the ACPI Interpreter\n"); |
diff --git a/drivers/acpi/scan.c b/drivers/acpi/scan.c index 449c556274c0..8ab80bafe3f1 100644 --- a/drivers/acpi/scan.c +++ b/drivers/acpi/scan.c | |||
| @@ -1062,13 +1062,12 @@ static void acpi_add_id(struct acpi_device *device, const char *dev_id) | |||
| 1062 | if (!id) | 1062 | if (!id) |
| 1063 | return; | 1063 | return; |
| 1064 | 1064 | ||
| 1065 | id->id = kmalloc(strlen(dev_id) + 1, GFP_KERNEL); | 1065 | id->id = kstrdup(dev_id, GFP_KERNEL); |
| 1066 | if (!id->id) { | 1066 | if (!id->id) { |
| 1067 | kfree(id); | 1067 | kfree(id); |
| 1068 | return; | 1068 | return; |
| 1069 | } | 1069 | } |
| 1070 | 1070 | ||
| 1071 | strcpy(id->id, dev_id); | ||
| 1072 | list_add_tail(&id->list, &device->pnp.ids); | 1071 | list_add_tail(&id->list, &device->pnp.ids); |
| 1073 | } | 1072 | } |
| 1074 | 1073 | ||
diff --git a/drivers/acpi/sysfs.c b/drivers/acpi/sysfs.c index c538d0ef10ff..9f66181c814e 100644 --- a/drivers/acpi/sysfs.c +++ b/drivers/acpi/sysfs.c | |||
| @@ -706,11 +706,23 @@ static void __exit interrupt_stats_exit(void) | |||
| 706 | return; | 706 | return; |
| 707 | } | 707 | } |
| 708 | 708 | ||
| 709 | static ssize_t | ||
| 710 | acpi_show_profile(struct device *dev, struct device_attribute *attr, | ||
| 711 | char *buf) | ||
| 712 | { | ||
| 713 | return sprintf(buf, "%d\n", acpi_gbl_FADT.preferred_profile); | ||
| 714 | } | ||
| 715 | |||
| 716 | static const struct device_attribute pm_profile_attr = | ||
| 717 | __ATTR(pm_profile, S_IRUGO, acpi_show_profile, NULL); | ||
| 718 | |||
| 709 | int __init acpi_sysfs_init(void) | 719 | int __init acpi_sysfs_init(void) |
| 710 | { | 720 | { |
| 711 | int result; | 721 | int result; |
| 712 | 722 | ||
| 713 | result = acpi_tables_sysfs_init(); | 723 | result = acpi_tables_sysfs_init(); |
| 714 | 724 | if (result) | |
| 725 | return result; | ||
| 726 | result = sysfs_create_file(acpi_kobj, &pm_profile_attr.attr); | ||
| 715 | return result; | 727 | return result; |
| 716 | } | 728 | } |
diff --git a/drivers/pnp/pnpacpi/rsparser.c b/drivers/pnp/pnpacpi/rsparser.c index bbf3edd85beb..5be4a392a3ae 100644 --- a/drivers/pnp/pnpacpi/rsparser.c +++ b/drivers/pnp/pnpacpi/rsparser.c | |||
| @@ -509,15 +509,12 @@ static __init void pnpacpi_parse_dma_option(struct pnp_dev *dev, | |||
| 509 | struct acpi_resource_dma *p) | 509 | struct acpi_resource_dma *p) |
| 510 | { | 510 | { |
| 511 | int i; | 511 | int i; |
| 512 | unsigned char map = 0, flags = 0; | 512 | unsigned char map = 0, flags; |
| 513 | |||
| 514 | if (p->channel_count == 0) | ||
| 515 | flags |= IORESOURCE_DISABLED; | ||
| 516 | 513 | ||
| 517 | for (i = 0; i < p->channel_count; i++) | 514 | for (i = 0; i < p->channel_count; i++) |
| 518 | map |= 1 << p->channels[i]; | 515 | map |= 1 << p->channels[i]; |
| 519 | 516 | ||
| 520 | flags |= dma_flags(dev, p->type, p->bus_master, p->transfer); | 517 | flags = dma_flags(dev, p->type, p->bus_master, p->transfer); |
| 521 | pnp_register_dma_resource(dev, option_flags, map, flags); | 518 | pnp_register_dma_resource(dev, option_flags, map, flags); |
| 522 | } | 519 | } |
| 523 | 520 | ||
| @@ -527,17 +524,14 @@ static __init void pnpacpi_parse_irq_option(struct pnp_dev *dev, | |||
| 527 | { | 524 | { |
| 528 | int i; | 525 | int i; |
| 529 | pnp_irq_mask_t map; | 526 | pnp_irq_mask_t map; |
| 530 | unsigned char flags = 0; | 527 | unsigned char flags; |
| 531 | |||
| 532 | if (p->interrupt_count == 0) | ||
| 533 | flags |= IORESOURCE_DISABLED; | ||
| 534 | 528 | ||
| 535 | bitmap_zero(map.bits, PNP_IRQ_NR); | 529 | bitmap_zero(map.bits, PNP_IRQ_NR); |
| 536 | for (i = 0; i < p->interrupt_count; i++) | 530 | for (i = 0; i < p->interrupt_count; i++) |
| 537 | if (p->interrupts[i]) | 531 | if (p->interrupts[i]) |
| 538 | __set_bit(p->interrupts[i], map.bits); | 532 | __set_bit(p->interrupts[i], map.bits); |
| 539 | 533 | ||
| 540 | flags |= irq_flags(p->triggering, p->polarity, p->sharable); | 534 | flags = irq_flags(p->triggering, p->polarity, p->sharable); |
| 541 | pnp_register_irq_resource(dev, option_flags, &map, flags); | 535 | pnp_register_irq_resource(dev, option_flags, &map, flags); |
| 542 | } | 536 | } |
| 543 | 537 | ||
| @@ -547,10 +541,7 @@ static __init void pnpacpi_parse_ext_irq_option(struct pnp_dev *dev, | |||
| 547 | { | 541 | { |
| 548 | int i; | 542 | int i; |
| 549 | pnp_irq_mask_t map; | 543 | pnp_irq_mask_t map; |
| 550 | unsigned char flags = 0; | 544 | unsigned char flags; |
| 551 | |||
| 552 | if (p->interrupt_count == 0) | ||
| 553 | flags |= IORESOURCE_DISABLED; | ||
| 554 | 545 | ||
| 555 | bitmap_zero(map.bits, PNP_IRQ_NR); | 546 | bitmap_zero(map.bits, PNP_IRQ_NR); |
| 556 | for (i = 0; i < p->interrupt_count; i++) { | 547 | for (i = 0; i < p->interrupt_count; i++) { |
| @@ -564,7 +555,7 @@ static __init void pnpacpi_parse_ext_irq_option(struct pnp_dev *dev, | |||
| 564 | } | 555 | } |
| 565 | } | 556 | } |
| 566 | 557 | ||
| 567 | flags |= irq_flags(p->triggering, p->polarity, p->sharable); | 558 | flags = irq_flags(p->triggering, p->polarity, p->sharable); |
| 568 | pnp_register_irq_resource(dev, option_flags, &map, flags); | 559 | pnp_register_irq_resource(dev, option_flags, &map, flags); |
| 569 | } | 560 | } |
| 570 | 561 | ||
| @@ -574,11 +565,8 @@ static __init void pnpacpi_parse_port_option(struct pnp_dev *dev, | |||
| 574 | { | 565 | { |
| 575 | unsigned char flags = 0; | 566 | unsigned char flags = 0; |
| 576 | 567 | ||
| 577 | if (io->address_length == 0) | ||
| 578 | flags |= IORESOURCE_DISABLED; | ||
| 579 | |||
| 580 | if (io->io_decode == ACPI_DECODE_16) | 568 | if (io->io_decode == ACPI_DECODE_16) |
| 581 | flags |= IORESOURCE_IO_16BIT_ADDR; | 569 | flags = IORESOURCE_IO_16BIT_ADDR; |
| 582 | pnp_register_port_resource(dev, option_flags, io->minimum, io->maximum, | 570 | pnp_register_port_resource(dev, option_flags, io->minimum, io->maximum, |
| 583 | io->alignment, io->address_length, flags); | 571 | io->alignment, io->address_length, flags); |
| 584 | } | 572 | } |
| @@ -587,13 +575,8 @@ static __init void pnpacpi_parse_fixed_port_option(struct pnp_dev *dev, | |||
| 587 | unsigned int option_flags, | 575 | unsigned int option_flags, |
| 588 | struct acpi_resource_fixed_io *io) | 576 | struct acpi_resource_fixed_io *io) |
| 589 | { | 577 | { |
| 590 | unsigned char flags = 0; | ||
| 591 | |||
| 592 | if (io->address_length == 0) | ||
| 593 | flags |= IORESOURCE_DISABLED; | ||
| 594 | |||
| 595 | pnp_register_port_resource(dev, option_flags, io->address, io->address, | 578 | pnp_register_port_resource(dev, option_flags, io->address, io->address, |
| 596 | 0, io->address_length, flags | IORESOURCE_IO_FIXED); | 579 | 0, io->address_length, IORESOURCE_IO_FIXED); |
| 597 | } | 580 | } |
| 598 | 581 | ||
| 599 | static __init void pnpacpi_parse_mem24_option(struct pnp_dev *dev, | 582 | static __init void pnpacpi_parse_mem24_option(struct pnp_dev *dev, |
| @@ -602,11 +585,8 @@ static __init void pnpacpi_parse_mem24_option(struct pnp_dev *dev, | |||
| 602 | { | 585 | { |
| 603 | unsigned char flags = 0; | 586 | unsigned char flags = 0; |
| 604 | 587 | ||
| 605 | if (p->address_length == 0) | ||
| 606 | flags |= IORESOURCE_DISABLED; | ||
| 607 | |||
| 608 | if (p->write_protect == ACPI_READ_WRITE_MEMORY) | 588 | if (p->write_protect == ACPI_READ_WRITE_MEMORY) |
| 609 | flags |= IORESOURCE_MEM_WRITEABLE; | 589 | flags = IORESOURCE_MEM_WRITEABLE; |
| 610 | pnp_register_mem_resource(dev, option_flags, p->minimum, p->maximum, | 590 | pnp_register_mem_resource(dev, option_flags, p->minimum, p->maximum, |
| 611 | p->alignment, p->address_length, flags); | 591 | p->alignment, p->address_length, flags); |
| 612 | } | 592 | } |
| @@ -617,11 +597,8 @@ static __init void pnpacpi_parse_mem32_option(struct pnp_dev *dev, | |||
| 617 | { | 597 | { |
| 618 | unsigned char flags = 0; | 598 | unsigned char flags = 0; |
| 619 | 599 | ||
| 620 | if (p->address_length == 0) | ||
| 621 | flags |= IORESOURCE_DISABLED; | ||
| 622 | |||
| 623 | if (p->write_protect == ACPI_READ_WRITE_MEMORY) | 600 | if (p->write_protect == ACPI_READ_WRITE_MEMORY) |
| 624 | flags |= IORESOURCE_MEM_WRITEABLE; | 601 | flags = IORESOURCE_MEM_WRITEABLE; |
| 625 | pnp_register_mem_resource(dev, option_flags, p->minimum, p->maximum, | 602 | pnp_register_mem_resource(dev, option_flags, p->minimum, p->maximum, |
| 626 | p->alignment, p->address_length, flags); | 603 | p->alignment, p->address_length, flags); |
| 627 | } | 604 | } |
| @@ -632,11 +609,8 @@ static __init void pnpacpi_parse_fixed_mem32_option(struct pnp_dev *dev, | |||
| 632 | { | 609 | { |
| 633 | unsigned char flags = 0; | 610 | unsigned char flags = 0; |
| 634 | 611 | ||
| 635 | if (p->address_length == 0) | ||
| 636 | flags |= IORESOURCE_DISABLED; | ||
| 637 | |||
| 638 | if (p->write_protect == ACPI_READ_WRITE_MEMORY) | 612 | if (p->write_protect == ACPI_READ_WRITE_MEMORY) |
| 639 | flags |= IORESOURCE_MEM_WRITEABLE; | 613 | flags = IORESOURCE_MEM_WRITEABLE; |
| 640 | pnp_register_mem_resource(dev, option_flags, p->address, p->address, | 614 | pnp_register_mem_resource(dev, option_flags, p->address, p->address, |
| 641 | 0, p->address_length, flags); | 615 | 0, p->address_length, flags); |
| 642 | } | 616 | } |
| @@ -656,19 +630,16 @@ static __init void pnpacpi_parse_address_option(struct pnp_dev *dev, | |||
| 656 | return; | 630 | return; |
| 657 | } | 631 | } |
| 658 | 632 | ||
| 659 | if (p->address_length == 0) | ||
| 660 | flags |= IORESOURCE_DISABLED; | ||
| 661 | |||
| 662 | if (p->resource_type == ACPI_MEMORY_RANGE) { | 633 | if (p->resource_type == ACPI_MEMORY_RANGE) { |
| 663 | if (p->info.mem.write_protect == ACPI_READ_WRITE_MEMORY) | 634 | if (p->info.mem.write_protect == ACPI_READ_WRITE_MEMORY) |
| 664 | flags |= IORESOURCE_MEM_WRITEABLE; | 635 | flags = IORESOURCE_MEM_WRITEABLE; |
| 665 | pnp_register_mem_resource(dev, option_flags, p->minimum, | 636 | pnp_register_mem_resource(dev, option_flags, p->minimum, |
| 666 | p->minimum, 0, p->address_length, | 637 | p->minimum, 0, p->address_length, |
| 667 | flags); | 638 | flags); |
| 668 | } else if (p->resource_type == ACPI_IO_RANGE) | 639 | } else if (p->resource_type == ACPI_IO_RANGE) |
| 669 | pnp_register_port_resource(dev, option_flags, p->minimum, | 640 | pnp_register_port_resource(dev, option_flags, p->minimum, |
| 670 | p->minimum, 0, p->address_length, | 641 | p->minimum, 0, p->address_length, |
| 671 | flags | IORESOURCE_IO_FIXED); | 642 | IORESOURCE_IO_FIXED); |
| 672 | } | 643 | } |
| 673 | 644 | ||
| 674 | static __init void pnpacpi_parse_ext_address_option(struct pnp_dev *dev, | 645 | static __init void pnpacpi_parse_ext_address_option(struct pnp_dev *dev, |
| @@ -678,19 +649,16 @@ static __init void pnpacpi_parse_ext_address_option(struct pnp_dev *dev, | |||
| 678 | struct acpi_resource_extended_address64 *p = &r->data.ext_address64; | 649 | struct acpi_resource_extended_address64 *p = &r->data.ext_address64; |
| 679 | unsigned char flags = 0; | 650 | unsigned char flags = 0; |
| 680 | 651 | ||
| 681 | if (p->address_length == 0) | ||
| 682 | flags |= IORESOURCE_DISABLED; | ||
| 683 | |||
| 684 | if (p->resource_type == ACPI_MEMORY_RANGE) { | 652 | if (p->resource_type == ACPI_MEMORY_RANGE) { |
| 685 | if (p->info.mem.write_protect == ACPI_READ_WRITE_MEMORY) | 653 | if (p->info.mem.write_protect == ACPI_READ_WRITE_MEMORY) |
| 686 | flags |= IORESOURCE_MEM_WRITEABLE; | 654 | flags = IORESOURCE_MEM_WRITEABLE; |
| 687 | pnp_register_mem_resource(dev, option_flags, p->minimum, | 655 | pnp_register_mem_resource(dev, option_flags, p->minimum, |
| 688 | p->minimum, 0, p->address_length, | 656 | p->minimum, 0, p->address_length, |
| 689 | flags); | 657 | flags); |
| 690 | } else if (p->resource_type == ACPI_IO_RANGE) | 658 | } else if (p->resource_type == ACPI_IO_RANGE) |
| 691 | pnp_register_port_resource(dev, option_flags, p->minimum, | 659 | pnp_register_port_resource(dev, option_flags, p->minimum, |
| 692 | p->minimum, 0, p->address_length, | 660 | p->minimum, 0, p->address_length, |
| 693 | flags | IORESOURCE_IO_FIXED); | 661 | IORESOURCE_IO_FIXED); |
| 694 | } | 662 | } |
| 695 | 663 | ||
| 696 | struct acpipnp_parse_option_s { | 664 | struct acpipnp_parse_option_s { |
diff --git a/drivers/thermal/thermal_sys.c b/drivers/thermal/thermal_sys.c index 708f8e92771a..dd9a5743fa99 100644 --- a/drivers/thermal/thermal_sys.c +++ b/drivers/thermal/thermal_sys.c | |||
| @@ -678,10 +678,10 @@ static void thermal_zone_device_set_polling(struct thermal_zone_device *tz, | |||
| 678 | return; | 678 | return; |
| 679 | 679 | ||
| 680 | if (delay > 1000) | 680 | if (delay > 1000) |
| 681 | schedule_delayed_work(&(tz->poll_queue), | 681 | queue_delayed_work(system_freezable_wq, &(tz->poll_queue), |
| 682 | round_jiffies(msecs_to_jiffies(delay))); | 682 | round_jiffies(msecs_to_jiffies(delay))); |
| 683 | else | 683 | else |
| 684 | schedule_delayed_work(&(tz->poll_queue), | 684 | queue_delayed_work(system_freezable_wq, &(tz->poll_queue), |
| 685 | msecs_to_jiffies(delay)); | 685 | msecs_to_jiffies(delay)); |
| 686 | } | 686 | } |
| 687 | 687 | ||
diff --git a/include/acpi/acpi_drivers.h b/include/acpi/acpi_drivers.h index e49c36d38d7e..bb145e4b935e 100644 --- a/include/acpi/acpi_drivers.h +++ b/include/acpi/acpi_drivers.h | |||
| @@ -144,7 +144,7 @@ static inline void unregister_dock_notifier(struct notifier_block *nb) | |||
| 144 | { | 144 | { |
| 145 | } | 145 | } |
| 146 | static inline int register_hotplug_dock_device(acpi_handle handle, | 146 | static inline int register_hotplug_dock_device(acpi_handle handle, |
| 147 | struct acpi_dock_ops *ops, | 147 | const struct acpi_dock_ops *ops, |
| 148 | void *context) | 148 | void *context) |
| 149 | { | 149 | { |
| 150 | return -ENODEV; | 150 | return -ENODEV; |
diff --git a/include/acpi/actypes.h b/include/acpi/actypes.h index b67231bef632..ed73f6705c86 100644 --- a/include/acpi/actypes.h +++ b/include/acpi/actypes.h | |||
| @@ -470,7 +470,6 @@ typedef u64 acpi_integer; | |||
| 470 | */ | 470 | */ |
| 471 | #define ACPI_FULL_INITIALIZATION 0x00 | 471 | #define ACPI_FULL_INITIALIZATION 0x00 |
| 472 | #define ACPI_NO_ADDRESS_SPACE_INIT 0x01 | 472 | #define ACPI_NO_ADDRESS_SPACE_INIT 0x01 |
| 473 | #define ACPI_NO_HARDWARE_INIT 0x02 | ||
| 474 | #define ACPI_NO_EVENT_INIT 0x04 | 473 | #define ACPI_NO_EVENT_INIT 0x04 |
| 475 | #define ACPI_NO_HANDLER_INIT 0x08 | 474 | #define ACPI_NO_HANDLER_INIT 0x08 |
| 476 | #define ACPI_NO_ACPI_ENABLE 0x10 | 475 | #define ACPI_NO_ACPI_ENABLE 0x10 |
