1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 3 #ifndef DRIVERS_CK505_CHIP_H 4 #define DRIVERS_CK505_CHIP_H 5 6 struct drivers_i2c_ck505_config { 7 const int nregs; 8 const u8 regs[32]; 9 const u8 mask[32]; 10 }; 11 12 #endif 13