diff options
author | imp <imp@FreeBSD.org> | 2003-08-03 06:17:06 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2003-08-03 06:17:06 +0000 |
commit | 991dd8e1638c9fe0641dcbd82036cfd024216883 (patch) | |
tree | 66000a03b5455ea87205b59cd3f832fc15393d09 | |
parent | 52878a67703b2e2eaa2388ced81978247f684260 (diff) | |
download | FreeBSD-src-991dd8e1638c9fe0641dcbd82036cfd024216883.zip FreeBSD-src-991dd8e1638c9fe0641dcbd82036cfd024216883.tar.gz |
Go ahead and allow ports as high as 0xfff to be used for pccard
devices. Only some devices support above 0x400, but since you have to
explicitly enable this range, you are assumed to know what you are
doing.
-rw-r--r-- | usr.sbin/pccard/pccardd/cardd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/pccard/pccardd/cardd.h b/usr.sbin/pccard/pccardd/cardd.h index f01c51b..ab7a0e1 100644 --- a/usr.sbin/pccard/pccardd/cardd.h +++ b/usr.sbin/pccard/pccardd/cardd.h @@ -189,7 +189,7 @@ void set_socket(int); void stat_changed(struct slot *); void process_client(void); -#define IOPORTS 0x400 +#define IOPORTS 0x1000 /* allow most of the low ports */ #define MEMUNIT 0x1000 #define MEMSTART 0xA0000 #define MEMEND 0x100000 |