[U-Boot-Users] [PATCH] fix QE firmware uploading limit
Timur Tabi
timur at freescale.com
Mon Mar 3 16:58:52 CET 2008
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 at 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;
}
--
1.5.4
More information about the U-Boot
mailing list