/* Starting in firmware 1.20, the RC info is provided on a bulk pipe */
 
-       if (intf->altsetting[0].desc.bNumEndpoints < rc_ep + 1)
+       if (intf->cur_altsetting->desc.bNumEndpoints < rc_ep + 1)
                return -ENODEV;
 
        purb = usb_alloc_urb(0, GFP_KERNEL);
         * Some devices like the Hauppauge NovaTD model 52009 use an interrupt
         * endpoint, while others use a bulk one.
         */
-       e = &intf->altsetting[0].endpoint[rc_ep].desc;
+       e = &intf->cur_altsetting->endpoint[rc_ep].desc;
        if (usb_endpoint_dir_in(e)) {
                if (usb_endpoint_xfer_bulk(e)) {
                        pipe = usb_rcvbulkpipe(d->udev, rc_ep);