aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlistair Popple <alistair@popple.id.au>2014-08-14 16:28:30 +1000
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2014-08-14 16:41:33 +1000
commit33e94ba07cb9a2d79492feb2d97e24d4b7cc6e4a (patch)
tree65f763938598fce8c1790321dab23f0e0130c1fb
parent087e04598ed74146c2f2eab5666cd4d4b53b6974 (diff)
downloadskiboot-33e94ba07cb9a2d79492feb2d97e24d4b7cc6e4a.zip
skiboot-33e94ba07cb9a2d79492feb2d97e24d4b7cc6e4a.tar.gz
skiboot-33e94ba07cb9a2d79492feb2d97e24d4b7cc6e4a.tar.bz2
ipmi/bt: Fixup BT device tree property
It seems that when we commited the IPMI/BT driver we updated the device tree compatible property for the iBT interface. Unfortunately Palmetto still requires a DT fixup for this node and somewhere along the way there was a typo. Signed-off-by: Alistair Popple <alistair@popple.id.au> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
-rw-r--r--hw/bt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/bt.c b/hw/bt.c
index 407f029..85ae6b4 100644
--- a/hw/bt.c
+++ b/hw/bt.c
@@ -372,7 +372,7 @@ void bt_init(void (*ipmi_cmd_done)(struct ipmi_msg *))
const struct dt_property *prop;
/* We support only one */
- n = dt_find_compatible_node(dt_root, NULL, "ibmi-bt");
+ n = dt_find_compatible_node(dt_root, NULL, "ipmi-bt");
if (!n)
return;