From: Jie Zhang Date: Sun, 14 Feb 2010 01:01:36 +0000 (+0800) Subject: Fix a typo in comment in my last change. X-Git-Tag: v1.0rc1~182 X-Git-Url: http://developer.intra2net.com/git/?p=libftdi;a=commitdiff_plain;h=2e685a1f8377ffdb1167262e4d87ea78a5b83d18 Fix a typo in comment in my last change. --- diff --git a/src/ftdi.c b/src/ftdi.c index afcf897..979aa23 100644 --- a/src/ftdi.c +++ b/src/ftdi.c @@ -1624,7 +1624,7 @@ int ftdi_read_data_set_chunksize(struct ftdi_context *ftdi, unsigned int chunksi #ifdef __linux__ /* We can't set readbuffer_chunksize larger than MAX_BULK_BUFFER_LENGTH, which is defined in libusb-1.0. Otherwise, each USB read request will - be devided into multiple URBs. This will cause issues on Linux kernel + be divided into multiple URBs. This will cause issues on Linux kernel older than 2.6.32. */ if (chunksize > 16384) chunksize = 16384;