~ubuntu-branches/ubuntu/trusty/linux-linaro-omap/trusty

« back to all changes in this revision

Viewing changes to drivers/media/video/gspca/gl860/gl860.c

  • Committer: Package Import Robot
  • Author(s): John Rigby, John Rigby
  • Date: 2011-09-26 10:44:23 UTC
  • Revision ID: package-import@ubuntu.com-20110926104423-57i0gl3v99b3lkfg
Tags: 3.0.0-1007.9
[ John Rigby ]

Enable crypto modules and remove crypto-modules from
exclude-module files
LP: #826021

Show diffs side-by-side

added added

removed removed

Lines of Context:
499
499
static int sd_probe(struct usb_interface *intf,
500
500
                                const struct usb_device_id *id)
501
501
{
502
 
        struct gspca_dev *gspca_dev;
503
 
        s32 ret;
504
 
 
505
 
        ret = gspca_dev_probe(intf, id,
 
502
        return gspca_dev_probe(intf, id,
506
503
                        &sd_desc_mi1320, sizeof(struct sd), THIS_MODULE);
507
 
 
508
 
        if (ret >= 0) {
509
 
                gspca_dev = usb_get_intfdata(intf);
510
 
 
511
 
                PDEBUG(D_PROBE,
512
 
                        "Camera is now controlling video device %s",
513
 
                        video_device_node_name(&gspca_dev->vdev));
514
 
        }
515
 
 
516
 
        return ret;
517
504
}
518
505
 
519
506
static void sd_disconnect(struct usb_interface *intf)