~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to drivers/gpu/drm/radeon/rs400.c

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
412
412
        /* 1M ring buffer */
413
413
        r = r100_cp_init(rdev, 1024 * 1024);
414
414
        if (r) {
415
 
                dev_err(rdev->dev, "failled initializing CP (%d).\n", r);
 
415
                dev_err(rdev->dev, "failed initializing CP (%d).\n", r);
416
416
                return r;
417
417
        }
418
418
        r = r100_ib_init(rdev);
419
419
        if (r) {
420
 
                dev_err(rdev->dev, "failled initializing IB (%d).\n", r);
 
420
                dev_err(rdev->dev, "failed initializing IB (%d).\n", r);
421
421
                return r;
422
422
        }
423
423
        return 0;