dect
/
linux-2.6
Archived
13
0
Fork 0

USB: cdc.h: ncm: fix one more typo

In usb_cdc_ncm_dpe32 the fields are 32 bit long and according
to usb style (hungarian notation) should be called dwDatagramIndex
and dwDatagramLength (see CDC NCM subclass spec, 3.3.2). Actually,
they were called wDatagramIndex, wDatagramLength.

Signed-off-by: Yauheni Kaliuta <yauheni.kaliuta@nokia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Yauheni Kaliuta 2010-09-24 09:43:27 +03:00 committed by Greg Kroah-Hartman
parent 677aeafe19
commit 6195e3c6aa
1 changed files with 2 additions and 2 deletions

View File

@ -343,8 +343,8 @@ struct usb_cdc_ncm_ndp16 {
/* 32-bit NCM Datagram Pointer Entry */
struct usb_cdc_ncm_dpe32 {
__le32 wDatagramIndex;
__le32 wDatagramLength;
__le32 dwDatagramIndex;
__le32 dwDatagramLength;
} __attribute__((__packed__));
/* 32-bit NCM Datagram Pointer Table */