sleep.c (b7d3622a39fde7658170b7f3cf6c6889bb8db30d) | sleep.c (2605fc216fa492f9e7c488bdc7f687cd6dcc703b) |
---|---|
1/* 2 * sleep.c - x86-specific ACPI sleep support. 3 * 4 * Copyright (C) 2001-2003 Patrick Mochel 5 * Copyright (C) 2001-2003 Pavel Machek <pavel@ucw.cz> 6 */ 7 8#include <linux/acpi.h> --- 17 unchanged lines hidden (view full) --- 26#endif 27 28/** 29 * x86_acpi_enter_sleep_state - enter sleep state 30 * @state: Sleep state to enter. 31 * 32 * Wrapper around acpi_enter_sleep_state() to be called by assmebly. 33 */ | 1/* 2 * sleep.c - x86-specific ACPI sleep support. 3 * 4 * Copyright (C) 2001-2003 Patrick Mochel 5 * Copyright (C) 2001-2003 Pavel Machek <pavel@ucw.cz> 6 */ 7 8#include <linux/acpi.h> --- 17 unchanged lines hidden (view full) --- 26#endif 27 28/** 29 * x86_acpi_enter_sleep_state - enter sleep state 30 * @state: Sleep state to enter. 31 * 32 * Wrapper around acpi_enter_sleep_state() to be called by assmebly. 33 */ |
34acpi_status asmlinkage x86_acpi_enter_sleep_state(u8 state) | 34acpi_status asmlinkage __visible x86_acpi_enter_sleep_state(u8 state) |
35{ 36 return acpi_enter_sleep_state(state); 37} 38 39/** 40 * x86_acpi_suspend_lowlevel - save kernel state 41 * 42 * Create an identity mapped page table and copy the wakeup routine to --- 98 unchanged lines hidden --- | 35{ 36 return acpi_enter_sleep_state(state); 37} 38 39/** 40 * x86_acpi_suspend_lowlevel - save kernel state 41 * 42 * Create an identity mapped page table and copy the wakeup routine to --- 98 unchanged lines hidden --- |