aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/tegra_caif.h
diff options
context:
space:
mode:
authorJonathan Herman <hermanjl@cs.unc.edu>2013-01-22 10:38:37 -0500
committerJonathan Herman <hermanjl@cs.unc.edu>2013-01-22 10:38:37 -0500
commitfcc9d2e5a6c89d22b8b773a64fb4ad21ac318446 (patch)
treea57612d1888735a2ec7972891b68c1ac5ec8faea /include/linux/tegra_caif.h
parent8dea78da5cee153b8af9c07a2745f6c55057fe12 (diff)
Added missing tegra files.HEADmaster
Diffstat (limited to 'include/linux/tegra_caif.h')
-rw-r--r--include/linux/tegra_caif.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/include/linux/tegra_caif.h b/include/linux/tegra_caif.h
new file mode 100644
index 00000000000..fed67499def
--- /dev/null
+++ b/include/linux/tegra_caif.h
@@ -0,0 +1,34 @@
1/* include/linux/tegra_caif.h
2 *
3 * Copyright (C) 2011 NVIDIA Corporation
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 */
19
20#ifndef _TEGRA_CAIF_H_
21#define _TEGRA_CAIF_H_
22
23/* The GPIO details needed by the rainbow caif */
24struct tegra_caif_platform_data {
25 int reset;
26 int power;
27 int awr;
28 int cwr;
29 int spi_int;
30 int spi_ss;
31};
32
33#endif /* _TEGRA_CAIF_H_ */
34