1 /* SPDX-License-Identifier: GPL-2.0 */ 1 2 /* Copyright (C) 2024, KEBA Industrial Automat 3 4 #ifndef _LINUX_MISC_KEBA_H 5 #define _LINUX_MISC_KEBA_H 6 7 #include <linux/auxiliary_bus.h> 8 9 struct i2c_board_info; 10 11 /** 12 * struct keba_i2c_auxdev - KEBA I2C auxiliary 13 * @auxdev: auxiliary device object 14 * @io: address range of I2C controller IO mem 15 * @info_size: number of I2C devices to be pro 16 * @info: I2C devices to be probed 17 */ 18 struct keba_i2c_auxdev { 19 struct auxiliary_device auxdev; 20 struct resource io; 21 int info_size; 22 struct i2c_board_info *info; 23 }; 24 25 #endif /* _LINUX_MISC_KEBA_H */ 26
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.