aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-tegra
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2011-07-19 12:10:44 -0400
committerArnd Bergmann <arnd@arndb.de>2011-07-19 12:10:44 -0400
commitc8f85523e70f8202ff49858bacd72fa65245f382 (patch)
treed0dbb5f5662094e90ecdef0b486000368d8f6e7d /arch/arm/mach-tegra
parentcc22b4c18540e5e8bf55c7d124044f9317527d3c (diff)
parentaa3831cf9d29cfeaebd8c2169378b74111364487 (diff)
Merge branch 'cross-platform/clkdev' into next/cross-platform
Diffstat (limited to 'arch/arm/mach-tegra')
-rw-r--r--arch/arm/mach-tegra/include/mach/clkdev.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/arch/arm/mach-tegra/include/mach/clkdev.h b/arch/arm/mach-tegra/include/mach/clkdev.h
deleted file mode 100644
index 66cd3f4fc896..000000000000
--- a/arch/arm/mach-tegra/include/mach/clkdev.h
+++ /dev/null
@@ -1,34 +0,0 @@
1/*
2 * arch/arm/mach-tegra/include/mach/clkdev.h
3 *
4 * Copyright (C) 2010 Google, Inc.
5 *
6 * Author:
7 * Colin Cross <ccross@google.com>
8 *
9 * This software is licensed under the terms of the GNU General Public
10 * License version 2, as published by the Free Software Foundation, and
11 * may be copied, distributed, and modified under those terms.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 */
19
20#ifndef __MACH_CLKDEV_H
21#define __MACH_CLKDEV_H
22
23struct clk;
24
25static inline int __clk_get(struct clk *clk)
26{
27 return 1;
28}
29
30static inline void __clk_put(struct clk *clk)
31{
32}
33
34#endif