[U-Boot-Users] [PATCH] fix QE firmware uploading limit

Fix a typo in qe_upload_firmware() that prevented uploading firmware on systems with more than one RISC core.
Signed-off-by: Timur Tabi timur@freescale.com ---
This patch is for 1.3.2. Andy, I know this isn't an 85xx-specific patch, but I was hoping you'd take it for me anyway.
drivers/qe/qe.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/qe/qe.c b/drivers/qe/qe.c index 63acfa3..7b6ecd7 100644 --- a/drivers/qe/qe.c +++ b/drivers/qe/qe.c @@ -334,7 +334,7 @@ int qe_upload_firmware(const struct qe_firmware *firmware) }
/* Validate some of the fields */ - if ((firmware->count < 1) || (firmware->count >= MAX_QE_RISC)) { + if ((firmware->count < 1) || (firmware->count > MAX_QE_RISC)) { printf("Invalid data\n"); return -EINVAL; }

In message 1204559932-17195-1-git-send-email-timur@freescale.com you wrote:
Fix a typo in qe_upload_firmware() that prevented uploading firmware on systems with more than one RISC core.
Signed-off-by: Timur Tabi timur@freescale.com
Applied, thanks.
Best regards,
Wolfgang Denk
participants (2)
-
Timur Tabi
-
Wolfgang Denk