From: Timur Tabi <timur@freescale.com>
To: u-boot@lists.denx.de
Subject: [U-Boot-Users] [PATCH] Fix out-of-range operand error in mpc83xx/start.S
Date: Fri, 14 Jul 2006 10:45:41 -0500 [thread overview]
Message-ID: <44B7BC25.5010901@freescale.com> (raw)
CHANGELOG
* Fixed syntax error in function init_e300_core() of mpc83xx/start.S if
CONFIG_WATCHDOG is defined. An out-of-range constant was changed to its
negative equivalent to make the compiler happy.
Signed-off-by: Timur Tabi <timur@freescale.com>
---
cpu/mpc83xx/start.S | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
482af05a0aa630b1380b332804d491ed01149815
diff --git a/cpu/mpc83xx/start.S b/cpu/mpc83xx/start.S
index 6e02cce..0ca4f4f 100644
--- a/cpu/mpc83xx/start.S
+++ b/cpu/mpc83xx/start.S
@@ -458,7 +458,7 @@ init_e300_core: /* time t 10 */
li r4, 0x556C
sth r4, SWSRR at l(r3)
- li r4, 0xAA39
+ li r4, -0x55C7 /* Equivalent to 0xAA39 */
sth r4, SWSRR at l(r3)
#else
/* Disable Wathcdog */
--
1.2.4
next reply other threads:[~2006-07-14 15:45 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-07-14 15:45 Timur Tabi [this message]
-- strict thread matches above, loose matches on Subject: below --
2006-07-11 21:03 [U-Boot-Users] [PATCH] Fix out-of-range operand error in mpc83xx/start.S Timur Tabi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=44B7BC25.5010901@freescale.com \
--to=timur@freescale.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox