mirror of
https://github.com/torvalds/linux.git
synced 2024-11-20 11:01:38 +00:00
3acf731cca
Some header files are never included outside of a mach-davinci directory and do not need to be made visible in include/mach, so let's just move them all down one level. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Sekhar Nori <nsekhar@ti.com>
19 lines
450 B
C
19 lines
450 B
C
/*
|
|
* TI DaVinci cpuidle platform support
|
|
*
|
|
* 2009 (C) Texas Instruments, Inc. http://www.ti.com/
|
|
*
|
|
* This file is licensed under the terms of the GNU General Public License
|
|
* version 2. This program is licensed "as is" without any warranty of any
|
|
* kind, whether express or implied.
|
|
*/
|
|
#ifndef _MACH_DAVINCI_CPUIDLE_H
|
|
#define _MACH_DAVINCI_CPUIDLE_H
|
|
|
|
struct davinci_cpuidle_config {
|
|
u32 ddr2_pdown;
|
|
void __iomem *ddr2_ctlr_base;
|
|
};
|
|
|
|
#endif
|