summaryrefslogtreecommitdiff
path: root/sys/dev/i2c/tsl2560.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/i2c/tsl2560.c')
-rw-r--r--sys/dev/i2c/tsl2560.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/sys/dev/i2c/tsl2560.c b/sys/dev/i2c/tsl2560.c
index a72cf8bd881..974dfbe30ca 100644
--- a/sys/dev/i2c/tsl2560.c
+++ b/sys/dev/i2c/tsl2560.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tsl2560.c,v 1.1 2005/11/15 22:23:20 kettenis Exp $ */
+/* $OpenBSD: tsl2560.c,v 1.2 2005/12/27 17:18:18 deraadt Exp $ */
/*
* Copyright (c) 2005 Mark Kettenis
@@ -62,12 +62,9 @@ tsl_match(struct device *parent, void *match, void *aux)
{
struct i2c_attach_args *ia = aux;
- if (ia->ia_compat) {
- if (strcmp(ia->ia_compat, "tsl2560") == 0)
- return (1);
- return (0);
- }
- return (1); /* accept the address given */
+ if (strcmp(ia->ia_name, "tsl2560") == 0)
+ return (1);
+ return (0);
}
void