clockdomain.h (1540f214065982e6cbc6b8da1fe65a15e358f7c5) | clockdomain.h (72e06d087204f3bc9acf281717b90ebf0b9731f7) |
---|---|
1/* 2 * arch/arm/plat-omap/include/mach/clockdomain.h 3 * 4 * OMAP2/3 clockdomain framework functions 5 * 6 * Copyright (C) 2008 Texas Instruments, Inc. 7 * Copyright (C) 2008-2010 Nokia Corporation 8 * --- 4 unchanged lines hidden (view full) --- 13 * published by the Free Software Foundation. 14 */ 15 16#ifndef __ARCH_ARM_MACH_OMAP2_CLOCKDOMAIN_H 17#define __ARCH_ARM_MACH_OMAP2_CLOCKDOMAIN_H 18 19#include <linux/init.h> 20 | 1/* 2 * arch/arm/plat-omap/include/mach/clockdomain.h 3 * 4 * OMAP2/3 clockdomain framework functions 5 * 6 * Copyright (C) 2008 Texas Instruments, Inc. 7 * Copyright (C) 2008-2010 Nokia Corporation 8 * --- 4 unchanged lines hidden (view full) --- 13 * published by the Free Software Foundation. 14 */ 15 16#ifndef __ARCH_ARM_MACH_OMAP2_CLOCKDOMAIN_H 17#define __ARCH_ARM_MACH_OMAP2_CLOCKDOMAIN_H 18 19#include <linux/init.h> 20 |
21#include <plat/powerdomain.h> | 21#include "powerdomain.h" |
22#include <plat/clock.h> 23#include <plat/cpu.h> 24 25/* Clockdomain capability flags */ 26#define CLKDM_CAN_FORCE_SLEEP (1 << 0) 27#define CLKDM_CAN_FORCE_WAKEUP (1 << 1) 28#define CLKDM_CAN_ENABLE_AUTO (1 << 2) 29#define CLKDM_CAN_DISABLE_AUTO (1 << 3) --- 120 unchanged lines hidden --- | 22#include <plat/clock.h> 23#include <plat/cpu.h> 24 25/* Clockdomain capability flags */ 26#define CLKDM_CAN_FORCE_SLEEP (1 << 0) 27#define CLKDM_CAN_FORCE_WAKEUP (1 << 1) 28#define CLKDM_CAN_ENABLE_AUTO (1 << 2) 29#define CLKDM_CAN_DISABLE_AUTO (1 << 3) --- 120 unchanged lines hidden --- |