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