diff options
| author | Warner Losh <imp@FreeBSD.org> | 2007-06-28 05:50:14 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2007-06-28 05:50:14 +0000 |
| commit | e9da08f2eb9b4f396bc91358a18949afbe8cf116 (patch) | |
| tree | 0ce0f756ecdc37e09a26bc4371e15f8170ab6c61 /sys/dev/usb | |
| parent | dc0c82bc3f3e6dfeddb31a117bab6cb05d7f1c6c (diff) | |
Notes
Diffstat (limited to 'sys/dev/usb')
| -rw-r--r-- | sys/dev/usb/umodem.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/usb/umodem.c b/sys/dev/usb/umodem.c index f16f1f98ba18..5f52d97cdeb7 100644 --- a/sys/dev/usb/umodem.c +++ b/sys/dev/usb/umodem.c @@ -132,11 +132,11 @@ static const struct umodem_product { /* * These are the maximum number of bytes transferred per frame. - * If some really high speed devices should use this driver they - * may need to be increased, but this is good enough for normal modems. + * As speeds for umodem deivces increase, these numbers will need to + * be increased. They should be good for G3 speeds and below. */ -#define UMODEMIBUFSIZE 64 -#define UMODEMOBUFSIZE 256 +#define UMODEMIBUFSIZE 1024 +#define UMODEMOBUFSIZE 1024 #define UMODEM_MODVER 1 /* module version */ |
