diff options
author | 2011-01-20 16:59:55 +0000 | |
---|---|---|
committer | 2011-01-20 16:59:55 +0000 | |
commit | 7a7d733b66b7f74af8f8aec243d9b7f7a4fb5168 (patch) | |
tree | 351ef519390ea4950a630e1673459210a0fa2ff0 | |
parent | The reason accounting in pf_reassemble() was not correct. Change (diff) | |
download | wireguard-openbsd-7a7d733b66b7f74af8f8aec243d9b7f7a4fb5168.tar.xz wireguard-openbsd-7a7d733b66b7f74af8f8aec243d9b7f7a4fb5168.zip |
add IT8721 support
-rw-r--r-- | sys/dev/isa/it.c | 3 | ||||
-rw-r--r-- | sys/dev/isa/itvar.h | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/isa/it.c b/sys/dev/isa/it.c index 457b2050283..bed72d7e166 100644 --- a/sys/dev/isa/it.c +++ b/sys/dev/isa/it.c @@ -1,4 +1,4 @@ -/* $OpenBSD: it.c,v 1.39 2009/01/16 06:58:32 form Exp $ */ +/* $OpenBSD: it.c,v 1.40 2011/01/20 16:59:55 form Exp $ */ /* * Copyright (c) 2007-2008 Oleg Safiullin <form@pdp-11.org.ru> @@ -166,6 +166,7 @@ it_match(struct device *parent, void *match, void *aux) case IT_ID_8716: case IT_ID_8718: case IT_ID_8720: + case IT_ID_8721: case IT_ID_8726: /* get environment controller base address */ it_writereg(ia->ia_iot, ioh, IT_LDN, IT_EC_LDN); diff --git a/sys/dev/isa/itvar.h b/sys/dev/isa/itvar.h index afdd07fd330..14a486b3018 100644 --- a/sys/dev/isa/itvar.h +++ b/sys/dev/isa/itvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: itvar.h,v 1.12 2009/01/16 06:58:32 form Exp $ */ +/* $OpenBSD: itvar.h,v 1.13 2011/01/20 16:59:55 form Exp $ */ /* * Copyright (c) 2007-2008 Oleg Safiullin <form@pdp-11.org.ru> @@ -45,6 +45,7 @@ #define IT_ID_8716 0x8716 #define IT_ID_8718 0x8718 #define IT_ID_8720 0x8720 +#define IT_ID_8721 0x8721 #define IT_ID_8726 0x8726 #define IT_CCR 0x02 |