~ubuntu-branches/ubuntu/quantal/linux-linaro-mx51/quantal

« back to all changes in this revision

Viewing changes to drivers/video/sh7760fb.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-3o58a3c1bj7x00rs
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:
551
551
                free_irq(par->irq, &par->vsync);
552
552
        iounmap(par->base);
553
553
out_res:
554
 
        release_resource(par->ioarea);
555
 
        kfree(par->ioarea);
 
554
        release_mem_region(res->start, resource_size(res));
556
555
out_fb:
557
556
        framebuffer_release(info);
558
557
        return ret;
570
569
        if (par->irq >= 0)
571
570
                free_irq(par->irq, par);
572
571
        iounmap(par->base);
573
 
        release_resource(par->ioarea);
574
 
        kfree(par->ioarea);
 
572
        release_mem_region(par->ioarea->start, resource_size(par->ioarea));
575
573
        framebuffer_release(info);
576
574
        platform_set_drvdata(dev, NULL);
577
575