cregit-Linux how code gets into the kernel

Release 4.7 include/linux/i2c-ocores.h

Directory: include/linux
/*
 * i2c-ocores.h - definitions for the i2c-ocores interface
 *
 * Peter Korsgaard <jacmet@sunsite.dk>
 *
 * This file is licensed under the terms of the GNU General Public License
 * version 2.  This program is licensed "as is" without any warranty of any
 * kind, whether express or implied.
 */

#ifndef _LINUX_I2C_OCORES_H

#define _LINUX_I2C_OCORES_H


struct ocores_i2c_platform_data {
	
u32 reg_shift; /* register offset shift value */
	
u32 reg_io_width; /* register io read/write width */
	
u32 clock_khz; /* input clock in kHz */
	
bool big_endian; /* registers are big endian */
	
u8 num_devices; /* number of devices in the devices list */
	
struct i2c_board_info const *devices; /* devices connected to the bus */
};

#endif /* _LINUX_I2C_OCORES_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
peter korsgaardpeter korsgaard2150.00%120.00%
richard rojforsrichard rojfors1126.19%120.00%
ganesan ramalingamganesan ramalingam614.29%240.00%
max filippovmax filippov49.52%120.00%
Total42100.00%5100.00%
Directory: include/linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}