https://github.com/torvalds/linux
Raw File
Tip revision: cd07202cc8262e1669edff0d97715f3dd9260917 authored by Linus Torvalds on 14 October 2010, 23:26:43 UTC
Linux 2.6.36-rc8
Tip revision: cd07202
i2c-pca-platform.h
#ifndef I2C_PCA9564_PLATFORM_H
#define I2C_PCA9564_PLATFORM_H

struct i2c_pca9564_pf_platform_data {
	int gpio;		/* pin to reset chip. driver will work when
				 * not supplied (negative value), but it
				 * cannot exit some error conditions then */
	int i2c_clock_speed;	/* values are defined in linux/i2c-algo-pca.h */
	int timeout;		/* timeout in jiffies */
};

#endif /* I2C_PCA9564_PLATFORM_H */
back to top