xref: /linux/include/linux/platform_data/i2c-pxa.h (revision a4eb44a6435d6d8f9e642407a4a06f65eb90ca04)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  *  i2c_pxa.h
4  *
5  *  Copyright (C) 2002 Intrinsyc Software Inc.
6  */
7 #ifndef _I2C_PXA_H_
8 #define _I2C_PXA_H_
9 
10 struct i2c_pxa_platform_data {
11 	unsigned int		class;
12 	unsigned int		use_pio :1;
13 	unsigned int		fast_mode :1;
14 	unsigned int		high_mode:1;
15 	unsigned char		master_code;
16 	unsigned long		rate;
17 };
18 #endif
19