mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 01:32:56 +08:00
sim: bfin: fix the otp fix fix
Need to shift the upper 32-bits and not just combine directly with the lower 32-bits.
This commit is contained in:
@ -1,3 +1,7 @@
|
||||
2021-05-28 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* dv-bfin_otp.c (bfin_otp_write_page): Shift data1 & data3 by 32-bits.
|
||||
|
||||
2021-05-23 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* dv-bfin_otp.c (bfin_otp_write_page): Fix args to
|
||||
|
@ -91,8 +91,8 @@ bfin_otp_write_page_val2 (struct bfin_otp *otp, bu16 page, bu64 lo, bu64 hi)
|
||||
static void
|
||||
bfin_otp_write_page (struct bfin_otp *otp, bu16 page)
|
||||
{
|
||||
bfin_otp_write_page_val2 (otp, page, (bu64)otp->data1 | otp->data0,
|
||||
(bu64)otp->data3 | otp->data2);
|
||||
bfin_otp_write_page_val2 (otp, page, ((bu64)otp->data1 << 32) | otp->data0,
|
||||
((bu64)otp->data3 << 32) | otp->data2);
|
||||
}
|
||||
|
||||
static unsigned
|
||||
|
Reference in New Issue
Block a user