i2c-pxa.h (354B)
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 10struct 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