summaryrefslogtreecommitdiff
path: root/src/drivers/i2c/pca9538/chip.h
blob: c9254a45e96b71048b056e27c418e14687407181 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef __DRIVERS_I2C_PCA9538_CHIP_H__
#define __DRIVERS_I2C_PCA9538_CHIP_H__

struct drivers_i2c_pca9538_config {
	unsigned char in_out;	/* Use bit as input(1) or output (0). */
	unsigned char invert;	/* If a bit is 1, the input will be inverted. */
	unsigned char out_val;	/* Initial output value to drive. */
};

#endif /* __DRIVERS_I2C_PCA9538_CHIP_H__ */