diff options
author | 2006-06-27 20:29:48 +0000 | |
---|---|---|
committer | 2006-06-27 20:29:48 +0000 | |
commit | c8f9e3956b8afe4b10688f3b1a7e7da581613e47 (patch) | |
tree | 8cea8ee8c091cbd37498c62946afd49f959407d5 /sys/dev/i2c | |
parent | pull in files.gpio in case we want it (diff) | |
download | wireguard-openbsd-c8f9e3956b8afe4b10688f3b1a7e7da581613e47.tar.xz wireguard-openbsd-c8f9e3956b8afe4b10688f3b1a7e7da581613e47.zip |
match pca9555 as a name too
Diffstat (limited to 'sys/dev/i2c')
-rw-r--r-- | sys/dev/i2c/pca9554.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/i2c/pca9554.c b/sys/dev/i2c/pca9554.c index 5cc443b2536..52f00312cbe 100644 --- a/sys/dev/i2c/pca9554.c +++ b/sys/dev/i2c/pca9554.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pca9554.c,v 1.7 2006/01/19 17:08:39 grange Exp $ */ +/* $OpenBSD: pca9554.c,v 1.8 2006/06/27 20:29:48 deraadt Exp $ */ /* * Copyright (c) 2005 Theo de Raadt @@ -72,6 +72,7 @@ pcagpio_match(struct device *parent, void *match, void *aux) if (strcmp(ia->ia_name, "PCA9554") == 0 || strcmp(ia->ia_name, "PCA9554M") == 0 || + strcmp(ia->ia_name, "pca9555") == 0 || strcmp(ia->ia_name, "pca9556") == 0 || strcmp(ia->ia_name, "pca9557") == 0) return (1); |