blob: 7bce1674918fab2cca2f233a5b9b97c2cb818d60 [file] [log] [blame]
Duncan Lauriea12fc812016-12-13 16:43:40 -08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2016 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16#ifndef __DRIVERS_I2C_HID_CHIP_H__
17#define __DRIVERS_I2C_HID_CHIP_H__
18
19#include <drivers/i2c/generic/chip.h>
20
21#define I2C_HID_CID "PNP0C50"
22
23struct drivers_i2c_hid_config {
24 struct drivers_i2c_generic_config generic;
25 uint8_t hid_desc_reg_offset;
26};
27
28#endif /* __I2C_HID_CHIP_H__ */