diff options
Diffstat (limited to 'drivers/acpi/sleep.c')
-rw-r--r-- | drivers/acpi/sleep.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/acpi/sleep.c b/drivers/acpi/sleep.c index eb6fd233764b..06527c526618 100644 --- a/drivers/acpi/sleep.c +++ b/drivers/acpi/sleep.c | |||
@@ -887,7 +887,7 @@ int __init acpi_sleep_init(void) | |||
887 | status = acpi_get_sleep_type_data(i, &type_a, &type_b); | 887 | status = acpi_get_sleep_type_data(i, &type_a, &type_b); |
888 | if (ACPI_SUCCESS(status)) { | 888 | if (ACPI_SUCCESS(status)) { |
889 | sleep_states[i] = 1; | 889 | sleep_states[i] = 1; |
890 | printk(" S%d", i); | 890 | printk(KERN_CONT " S%d", i); |
891 | } | 891 | } |
892 | } | 892 | } |
893 | 893 | ||
@@ -901,7 +901,7 @@ int __init acpi_sleep_init(void) | |||
901 | hibernation_set_ops(old_suspend_ordering ? | 901 | hibernation_set_ops(old_suspend_ordering ? |
902 | &acpi_hibernation_ops_old : &acpi_hibernation_ops); | 902 | &acpi_hibernation_ops_old : &acpi_hibernation_ops); |
903 | sleep_states[ACPI_STATE_S4] = 1; | 903 | sleep_states[ACPI_STATE_S4] = 1; |
904 | printk(" S4"); | 904 | printk(KERN_CONT " S4"); |
905 | if (!nosigcheck) { | 905 | if (!nosigcheck) { |
906 | acpi_get_table(ACPI_SIG_FACS, 1, | 906 | acpi_get_table(ACPI_SIG_FACS, 1, |
907 | (struct acpi_table_header **)&facs); | 907 | (struct acpi_table_header **)&facs); |
@@ -914,11 +914,11 @@ int __init acpi_sleep_init(void) | |||
914 | status = acpi_get_sleep_type_data(ACPI_STATE_S5, &type_a, &type_b); | 914 | status = acpi_get_sleep_type_data(ACPI_STATE_S5, &type_a, &type_b); |
915 | if (ACPI_SUCCESS(status)) { | 915 | if (ACPI_SUCCESS(status)) { |
916 | sleep_states[ACPI_STATE_S5] = 1; | 916 | sleep_states[ACPI_STATE_S5] = 1; |
917 | printk(" S5"); | 917 | printk(KERN_CONT " S5"); |
918 | pm_power_off_prepare = acpi_power_off_prepare; | 918 | pm_power_off_prepare = acpi_power_off_prepare; |
919 | pm_power_off = acpi_power_off; | 919 | pm_power_off = acpi_power_off; |
920 | } | 920 | } |
921 | printk(")\n"); | 921 | printk(KERN_CONT ")\n"); |
922 | /* | 922 | /* |
923 | * Register the tts_notifier to reboot notifier list so that the _TTS | 923 | * Register the tts_notifier to reboot notifier list so that the _TTS |
924 | * object can also be evaluated when the system enters S5. | 924 | * object can also be evaluated when the system enters S5. |