diff mbox

[U-Boot] driver/qe: update status of QE microcode

Message ID 1406120596-24843-1-git-send-email-vijay.rai@freescale.com
State Accepted
Delegated to: York Sun
Headers show

Commit Message

vijay rai July 23, 2014, 1:03 p.m. UTC
This Patch updates error print for QE which should be easily understood

Signed-off-by: Vijay Rai <vijay.rai@freescale.com>
---
 drivers/qe/qe.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

York Sun Aug. 20, 2014, 7:37 p.m. UTC | #1
On 07/23/2014 06:03 AM, Vijay Rai wrote:
> This Patch updates error print for QE which should be easily understood
> 
> Signed-off-by: Vijay Rai <vijay.rai@freescale.com>
> ---

Applied to u-boot-mpc85xx master branch, awaiting for upstream.

York
diff mbox

Patch

diff --git a/drivers/qe/qe.c b/drivers/qe/qe.c
index 9c5fbd1..df468d4 100644
--- a/drivers/qe/qe.c
+++ b/drivers/qe/qe.c
@@ -333,7 +333,7 @@  int qe_upload_firmware(const struct qe_firmware *firmware)
 	/* Check the magic */
 	if ((hdr->magic[0] != 'Q') || (hdr->magic[1] != 'E') ||
 	    (hdr->magic[2] != 'F')) {
-		printf("Not a microcode\n");
+		printf("QE microcode not found\n");
 #ifdef CONFIG_DEEP_SLEEP
 		setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_QE_DISABLE);
 #endif