brintos

brintos / linux-shallow public Read only

0
0
Text · 335 B · b2844e1 Raw
20 lines · c
1/* SPDX-License-Identifier: GPL-2.0-or-later */2/*3 */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_*/20