Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame^] | 1 | /* |
| 2 | * Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License version 2 and |
| 6 | * only version 2 as published by the Free Software Foundation. |
| 7 | * |
| 8 | * This program is distributed in the hope that it will be useful, |
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 | * GNU General Public License for more details. |
| 12 | */ |
| 13 | |
| 14 | #include <linux/module.h> |
| 15 | |
| 16 | #include "cpuidle.h" |
| 17 | #include "idle.h" |
| 18 | #include "pm.h" |
| 19 | |
| 20 | void arch_idle(void) |
| 21 | { } |
| 22 | |
| 23 | void msm_pm_set_platform_data(struct msm_pm_platform_data *data, int count) |
| 24 | { } |
| 25 | |
| 26 | void msm_pm_set_max_sleep_time(int64_t max_sleep_time_ns) { } |
| 27 | EXPORT_SYMBOL(msm_pm_set_max_sleep_time); |
| 28 | |
| 29 | int platform_cpu_disable(unsigned int cpu) |
| 30 | { |
| 31 | return -ENOSYS; |
| 32 | } |
| 33 | |
| 34 | int platform_cpu_kill(unsigned int cpu) |
| 35 | { |
| 36 | return -ENOSYS; |
| 37 | } |
| 38 | |
| 39 | void platform_cpu_die(unsigned int cpu) |
| 40 | { } |