diff options
author | Oleg Safiullin <form@cvs.openbsd.org> | 2011-01-20 16:59:56 +0000 |
---|---|---|
committer | Oleg Safiullin <form@cvs.openbsd.org> | 2011-01-20 16:59:56 +0000 |
commit | dcc151d9aaa57a51d1cb15c6119f015e3a215729 (patch) | |
tree | b7784590fb985258da671a91cc15f401d156e885 /sys/dev/isa | |
parent | d00a088b570b88c7c1c139e8f4018992bb704db4 (diff) |
add IT8721 support
Diffstat (limited to 'sys/dev/isa')
-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 |