~ctf/alsa-driver/tiwai-trunk2.bazooka_dock

« back to all changes in this revision

Viewing changes to soc/fsl/fsl_ssi.c

  • Committer: Canonistack server
  • Date: 2015-01-26 14:04:33 UTC
  • Revision ID: david.henningsson@canonical.com-20150126140433-7ep8rbcw2tnuki1g
Test run of 623 machines: 3 failing with 3 errors and 0 warnings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1362
1362
        }
1363
1363
 
1364
1364
        ssi_private->irq = platform_get_irq(pdev, 0);
1365
 
        if (!ssi_private->irq) {
 
1365
        if (ssi_private->irq < 0) {
1366
1366
                dev_err(&pdev->dev, "no irq for node %s\n", np->full_name);
1367
 
                return -ENXIO;
 
1367
                return ssi_private->irq;
1368
1368
        }
1369
1369
 
1370
1370
        /* Are the RX and the TX clocks locked? */