ARM: imx: move imx6q_cpuidle_driver into a separate file
[linux-2.6/btrfs-unstable.git] / arch / arm / mach-imx / cpuidle-imx6q.c
blob83facc97b5da53be2f3ac32b5fec1a669c828980
1 /*
2 * Copyright (C) 2012 Freescale Semiconductor, Inc.
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 as
6 * published by the Free Software Foundation.
7 */
9 #include <linux/cpuidle.h>
10 #include <linux/module.h>
11 #include <asm/cpuidle.h>
13 #include "cpuidle.h"
15 static struct cpuidle_driver imx6q_cpuidle_driver = {
16 .name = "imx6q_cpuidle",
17 .owner = THIS_MODULE,
18 .en_core_tk_irqen = 1,
19 .states[0] = ARM_CPUIDLE_WFI_STATE,
20 .state_count = 1,
23 int __init imx6q_cpuidle_init(void)
25 return imx_cpuidle_init(&imx6q_cpuidle_driver);