projects
/
platform
/
upstream
/
binutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5eba9ae
)
sim: ppc: phb: add missing break to address decoder
author
Mike Frysinger
<vapier@gentoo.org>
Thu, 21 Dec 2023 05:15:48 +0000
(
00:15
-0500)
committer
Mike Frysinger
<vapier@gentoo.org>
Thu, 21 Dec 2023 06:21:18 +0000
(
01:21
-0500)
I don't know what this emulation does exactly, but it missing a break
statement seems kind of obvious based on the 32-bit case above it.
sim/ppc/hw_phb.c
patch
|
blob
|
history
diff --git
a/sim/ppc/hw_phb.c
b/sim/ppc/hw_phb.c
index
ec1119e
..
06eb29f
100644
(file)
--- a/
sim/ppc/hw_phb.c
+++ b/
sim/ppc/hw_phb.c
@@
-652,6
+652,7
@@
hw_phb_unit_decode(device *me,
&& val != 0x10 && val != 0x18 && val != 0x20)
device_error(me, "Register number (0x%lx) invalid in 64bit PCI address %s",
val, unit);
+ break;
case ss_config_code:
device_error(me, "internal error");
}