summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>2018-05-27 14:03:56 +0000
committerthorpej <thorpej@NetBSD.org>2018-05-27 14:03:56 +0000
commit77535c1bb61feb0de13ffe4e9010d1dc6d98219c (patch)
treef96473ac31d174edc6a006e1507242b8ecacf641 /sys/dev
parentb80f89d7ea6b8684b3aa581c06bd25f3de55ae58 (diff)
Update the compat strings to match what Linux uses, per jmcneill@.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/i2c/tsl256x.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/sys/dev/i2c/tsl256x.c b/sys/dev/i2c/tsl256x.c
index f3cfc2a5018..1d996e59e9d 100644
--- a/sys/dev/i2c/tsl256x.c
+++ b/sys/dev/i2c/tsl256x.c
@@ -1,4 +1,4 @@
-/* $NetBSD: tsl256x.c,v 1.1 2018/05/27 05:31:20 thorpej Exp $ */
+/* $NetBSD: tsl256x.c,v 1.2 2018/05/27 14:03:56 thorpej Exp $ */
/*-
* Copyright (c) 2018 Jason R. Thorpe
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tsl256x.c,v 1.1 2018/05/27 05:31:20 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tsl256x.c,v 1.2 2018/05/27 14:03:56 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -79,9 +79,8 @@ CFATTACH_DECL_NEW(tsllux, sizeof(struct tsllux_softc),
tsllux_match, tsllux_attach, NULL, NULL);
static const char *tsllux_compats[] = {
- "taos,tsl2560",
- "taos,tsl2561",
- "taos,tsl256x",
+ "amstaos,tsl2560",
+ "amstaos,tsl2561",
NULL
};