Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 71105
b: refs/heads/master
c: b3dac3b
h: refs/heads/master
i:
  71103: 6166835
v: v3
  • Loading branch information
Rafael J. Wysocki authored and Linus Torvalds committed Oct 18, 2007
1 parent 2abde9a commit c7bf90f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 74f270af0c1ed5b9d4413784256959dcfe3593ce
refs/heads/master: b3dac3b304bdfbb06e92b0d4bba9ecab006795e6
2 changes: 1 addition & 1 deletion trunk/drivers/acpi/sleep/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ static void acpi_hibernation_restore_cleanup(void)
acpi_hw_enable_all_runtime_gpes();
}

static struct hibernation_ops acpi_hibernation_ops = {
static struct platform_hibernation_ops acpi_hibernation_ops = {
.start = acpi_hibernation_start,
.pre_snapshot = acpi_hibernation_prepare,
.finish = acpi_hibernation_finish,
Expand Down
8 changes: 4 additions & 4 deletions trunk/include/linux/suspend.h
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ extern void drain_local_pages(void);
extern void mark_free_pages(struct zone *zone);

/**
* struct hibernation_ops - hibernation platform support
* struct platform_hibernation_ops - hibernation platform support
*
* The methods in this structure allow a platform to override the default
* mechanism of shutting down the machine during a hibernation transition.
Expand Down Expand Up @@ -164,7 +164,7 @@ extern void mark_free_pages(struct zone *zone);
* Called right after the nonboot CPUs have been enabled and before
* thawing devices (runs with IRQs on).
*/
struct hibernation_ops {
struct platform_hibernation_ops {
int (*start)(void);
int (*pre_snapshot)(void);
void (*finish)(void);
Expand All @@ -190,14 +190,14 @@ extern void swsusp_set_page_free(struct page *);
extern void swsusp_unset_page_free(struct page *);
extern unsigned long get_safe_page(gfp_t gfp_mask);

extern void hibernation_set_ops(struct hibernation_ops *ops);
extern void hibernation_set_ops(struct platform_hibernation_ops *ops);
extern int hibernate(void);
#else /* CONFIG_HIBERNATION */
static inline int swsusp_page_is_forbidden(struct page *p) { return 0; }
static inline void swsusp_set_page_free(struct page *p) {}
static inline void swsusp_unset_page_free(struct page *p) {}

static inline void hibernation_set_ops(struct hibernation_ops *ops) {}
static inline void hibernation_set_ops(struct platform_hibernation_ops *ops) {}
static inline int hibernate(void) { return -ENOSYS; }
#endif /* CONFIG_HIBERNATION */

Expand Down
4 changes: 2 additions & 2 deletions trunk/kernel/power/disk.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ enum {

static int hibernation_mode = HIBERNATION_SHUTDOWN;

static struct hibernation_ops *hibernation_ops;
static struct platform_hibernation_ops *hibernation_ops;

/**
* hibernation_set_ops - set the global hibernate operations
* @ops: the hibernation operations to use in subsequent hibernation transitions
*/

void hibernation_set_ops(struct hibernation_ops *ops)
void hibernation_set_ops(struct platform_hibernation_ops *ops)
{
if (ops && !(ops->start && ops->pre_snapshot && ops->finish
&& ops->prepare && ops->enter && ops->pre_restore
Expand Down

0 comments on commit c7bf90f

Please sign in to comment.