aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/tegra-ahb.h
diff options
context:
space:
mode:
authorStephen Warren <swarren@nvidia.com>2012-09-19 17:51:01 -0400
committerStephen Warren <swarren@nvidia.com>2012-11-05 13:36:06 -0500
commitcc95e347cbba3a29c6f8c95ec737624afe489d8e (patch)
tree53a4e5a5051b49d2e42a4a5a813ad1150df1e292 /include/linux/tegra-ahb.h
parenta25186eb03f1f89eacda559d39c14e3cf8ffae13 (diff)
ARM: tegra: move tegra-ahb.h out of arch/arm/mach-tegra/
We wish to empty arch/arm/mach-tegra/include/mach/ as much as possible to enable single zImage. Move tegra-ahb.h to a more central location (suggested by Arnd, OK'd by Greg KH), and actually make tegra-ahb.c include the header to ensure client and provider agree on the prototype. Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'include/linux/tegra-ahb.h')
-rw-r--r--include/linux/tegra-ahb.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/include/linux/tegra-ahb.h b/include/linux/tegra-ahb.h
new file mode 100644
index 000000000000..f1cd075ceee1
--- /dev/null
+++ b/include/linux/tegra-ahb.h
@@ -0,0 +1,19 @@
1/*
2 * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 */
13
14#ifndef __LINUX_AHB_H__
15#define __LINUX_AHB_H__
16
17extern int tegra_ahb_enable_smmu(struct device_node *ahb);
18
19#endif /* __LINUX_AHB_H__ */