]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - sitara-epos/sitara-epos-kernel.git/commitdiff
ARM: OMAP: AM33XX: Rename the firmware binary
authorVaibhav Bedia <vaibhav.bedia@ti.com>
Fri, 9 Mar 2012 15:47:48 +0000 (21:17 +0530)
committerVaibhav Bedia <vaibhav.bedia@ti.com>
Fri, 9 Mar 2012 19:08:34 +0000 (00:38 +0530)
Update the name of the firmware binary to be loaded
onto Cortex-M3 for low power transitions.

If the binary is not provided at the time of kernel
compilation there's a timeout of 60 seconds. To avoid
creating any confusion due to missing binary add a
message indicating that the firmware is now going
to be loaded.

Signed-off-by: Vaibhav Bedia <vaibhav.bedia@ti.com>
arch/arm/mach-omap2/pm33xx.c

index bdb08645c8a5dab5b5fc0808876462805d89c270..23e122da4ac6f11a99bc33a0a028ceffc3f9e922 100644 (file)
@@ -371,8 +371,10 @@ static int wkup_m3_init(void)
                goto err5;
        }
 
+       pr_info("Trying to load am335x-pm-firmware.bin\n");
+
        /* Now try to load the firware */
-       ret = request_firmware(&firmware, "cm3-firmware.bin", mpu_dev);
+       ret = request_firmware(&firmware, "am335x-pm-firmware.bin", mpu_dev);
        if (ret < 0) {
                dev_err(mpu_dev, "request_firmware failed\n");
                goto err6;