diff options
author | Joshua Stein <jcs@cvs.openbsd.org> | 2016-01-12 01:11:16 +0000 |
---|---|---|
committer | Joshua Stein <jcs@cvs.openbsd.org> | 2016-01-12 01:11:16 +0000 |
commit | aed4423c7d742eb53456cd5f7cfd25b67f684521 (patch) | |
tree | e4105dfd6022fcb1576a79fe91753fa8a5771aeb /sys/dev/acpi/acpivar.h | |
parent | 051eb318946cb49493d05cc3d8f3b20d33741552 (diff) |
Add dwiic, a driver for the Synopsys DesignWare i2c controller found
on the Samsung ATIV Book 9 laptop. This initial version only
supports ACPI config/attachment.
Add ihidev, a HID-over-i2c driver largely based on uhidev. dwiic
handles attaching ihidev devices found in ACPI.
Add ims, a HID-over-i2c mouse/trackpad driver to get basic cursor
and button functionality from HID-compliant i2c trackpads.
ok kettenis deraadt
Diffstat (limited to 'sys/dev/acpi/acpivar.h')
-rw-r--r-- | sys/dev/acpi/acpivar.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/acpi/acpivar.h b/sys/dev/acpi/acpivar.h index 979ad54c0a2..6b84fe1f1a6 100644 --- a/sys/dev/acpi/acpivar.h +++ b/sys/dev/acpi/acpivar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: acpivar.h,v 1.81 2016/01/10 16:59:41 kettenis Exp $ */ +/* $OpenBSD: acpivar.h,v 1.82 2016/01/12 01:11:15 jcs Exp $ */ /* * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> * @@ -341,7 +341,8 @@ void acpi_write_pmreg(struct acpi_softc *, int, int, int); void acpi_poll(void *); void acpi_sleep(int, char *); -int acpi_matchhids(struct acpi_attach_args *, const char *[], const char *); +int acpi_matchhids(struct acpi_attach_args *, const char *[], const char *); +int acpi_parsehid(struct aml_node *, void *, char *, char *, size_t); int acpi_record_event(struct acpi_softc *, u_int); |