summaryrefslogtreecommitdiffstats
path: root/src/drivers/i2c/hid/chip.h
blob: d6180db31eb51581a839fbd1d0223302b8d4d635 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#ifndef __DRIVERS_I2C_HID_CHIP_H__
#define __DRIVERS_I2C_HID_CHIP_H__

#include <drivers/i2c/generic/chip.h>

#define I2C_HID_CID	"PNP0C50"

struct drivers_i2c_hid_config {
	struct drivers_i2c_generic_config generic;
	uint8_t hid_desc_reg_offset;
};

#endif /* __I2C_HID_CHIP_H__ */