Merge branch 'mailbox-devel' of git://git.linaro.org/landing-teams/working/fujitsu...
authorLinus Torvalds <torvalds@linux-foundation.org>
Wed, 11 Feb 2015 20:56:40 +0000 (12:56 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 11 Feb 2015 20:56:40 +0000 (12:56 -0800)
Pull mailbox framework updates from Jassi Brar.

* 'mailbox-devel' of git://git.linaro.org/landing-teams/working/fujitsu/integration:
  mailbox: Add Altera mailbox driver
  mailbox: check for bit set before polling
  Mailbox: Fix return value check in pcc_init()

1  2 
MAINTAINERS
drivers/mailbox/pcc.c

diff --cc MAINTAINERS
Simple merge
@@@ -393,9 -393,9 +393,9 @@@ static int __init pcc_init(void
        pcc_pdev = platform_create_bundle(&pcc_mbox_driver,
                        pcc_mbox_probe, NULL, 0, NULL, 0);
  
-       if (!pcc_pdev) {
+       if (IS_ERR(pcc_pdev)) {
 -              pr_err("Err creating PCC platform bundle\n");
 +              pr_debug("Err creating PCC platform bundle\n");
-               return -ENODEV;
+               return PTR_ERR(pcc_pdev);
        }
  
        return 0;