blob: 00e30b8990eb23ab1325b6aafd75e87502f6a6f5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/*
* drivers/i2c/busses/hv_i2c-tegra.c
*
* Copyright (c) 2015 NVIDIA CORPORATION. All rights reserved.
* Author: Arnab Basu <abasu@nvidia.com>
*
* This software is licensed under the terms of the GNU General Public
* License version 2, as published by the Free Software Foundation, and
* may be copied, distributed, and modified under those terms.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/
#ifndef _LINUX_I2C_TEGRA_HV_H
#define _LINUX_I2C_TEGRA_HV_H
struct tegra_hv_i2c_platform_data {
int retries;
int timeout; /* in jiffies */
u16 slave_addr;
};
#endif /* _LINUX_I2C_TEGRA_HV_H */
|