pm44xx.c (bb3613aa34a81a5e2f1227ccdb801fde04a7da10) | pm44xx.c (72e06d087204f3bc9acf281717b90ebf0b9731f7) |
---|---|
1/* 2 * OMAP4 Power Management Routines 3 * 4 * Copyright (C) 2010 Texas Instruments, Inc. 5 * Rajendra Nayak <rnayak@ti.com> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License version 2 as 9 * published by the Free Software Foundation. 10 */ 11 12#include <linux/pm.h> 13#include <linux/suspend.h> 14#include <linux/module.h> 15#include <linux/list.h> 16#include <linux/err.h> 17#include <linux/slab.h> 18 | 1/* 2 * OMAP4 Power Management Routines 3 * 4 * Copyright (C) 2010 Texas Instruments, Inc. 5 * Rajendra Nayak <rnayak@ti.com> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License version 2 as 9 * published by the Free Software Foundation. 10 */ 11 12#include <linux/pm.h> 13#include <linux/suspend.h> 14#include <linux/module.h> 15#include <linux/list.h> 16#include <linux/err.h> 17#include <linux/slab.h> 18 |
19#include <plat/powerdomain.h> | 19#include "powerdomain.h" |
20#include <mach/omap4-common.h> 21 22struct power_state { 23 struct powerdomain *pwrdm; 24 u32 next_state; 25#ifdef CONFIG_SUSPEND 26 u32 saved_state; 27#endif --- 96 unchanged lines hidden --- | 20#include <mach/omap4-common.h> 21 22struct power_state { 23 struct powerdomain *pwrdm; 24 u32 next_state; 25#ifdef CONFIG_SUSPEND 26 u32 saved_state; 27#endif --- 96 unchanged lines hidden --- |