blob: b2844e1cac80144dbfa3363b71406c802561af11 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001/* SPDX-License-Identifier: GPL-2.0-or-later */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003 */
4
5#ifndef _MV64XXX_I2C_H_
6#define _MV64XXX_I2C_H_
7
8#include <linux/types.h>
9
10#define MV64XXX_I2C_CTLR_NAME "mv64xxx_i2c"
11
12/* i2c Platform Device, Driver Data */
13struct mv64xxx_i2c_pdata {
14 u32 freq_m;
15 u32 freq_n;
16 u32 timeout; /* In milliseconds */
17};
18
19#endif /*_MV64XXX_I2C_H_*/