> -----Original Message----- > From: David Miller [mailto:davem@xxxxxxxxxxxxx] > Sent: Wednesday, August 03, 2011 12:43 PM > To: alexey.orishko@xxxxxxxxx > Cc: netdev@xxxxxxxxxxxxxxx; oliver@xxxxxxxxxx; linux-usb@xxxxxxxxxxxxxxx; > gregkh@xxxxxxx; Alexey ORISHKO > Subject: Re: [PATCH ] cdc_ncm: fixes for big-endian architecture / MIPS > > From: Alexey Orishko <alexey.orishko@xxxxxxxxx> > Date: Tue, 2 Aug 2011 18:20:26 +0200 > > > @@ -203,8 +203,8 @@ static u8 cdc_ncm_setup(struct cdc_ncm_ctx *ctx) > > req.bmRequestType = USB_TYPE_CLASS | USB_DIR_IN | USB_RECIP_INTERFACE; > > req.bNotificationType = USB_CDC_GET_NTB_PARAMETERS; > > req.wValue = 0; > > - req.wIndex = cpu_to_le16(iface_no); > > - req.wLength = cpu_to_le16(sizeof(ctx->ncm_parm)); > > + req.wIndex = iface_no; > > + req.wLength = sizeof(ctx->ncm_parm); > > > > err = cdc_ncm_do_request(ctx, &req, &ctx->ncm_parm, 0, NULL, 1000); > > if (err) { > > This can't be correct. > > "iface_no" is a u8 we read out of desc->bInterfaceNumber > > we still have to extend it to a u16 and convert it to a little endian > 16-bit value for the req.wIndex field. > > If the types for the cdc notification struct are wrong, that's another > story entirely. But currently they are marked as __le16 so you must > resolve this first. Ok. I see where confusion started... cdc_ncm is incorrectly using struct usb_cdc_notification (__le16) as input to usb_control_msg() function, which is expecting u16 data type arguments. I will post an updated patch shortly. alexey -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html