blob: 6e34d712f2a80cf405b607ea03cc8943eb030819 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef __DRIVERS_TOUCH_DEV_HYNITRON_H__
#define __DRIVERS_TOUCH_DEV_HYNITRON_H__
#include "chip.h"
static const struct drivers_intel_touch_config hynitron_touch_config = {
.sensor_dev_name = "Hynitron HFW68H Touch Pad Device",
.dev_hidi2c = {
.hid = "HFW68H",
.cid = "PNP0C50",
.intf.hidi2c.addr = 0x2c,
.intf.hidi2c.descriptor_address = 0x20
},
};
#endif /* __DRIVERS_TOUCH_DEV_HYNITRON_H__ */
|