[OpenBIOS] [PATCH 2/5] ppc: fix up power-mgt properties
Cormac O'Brien
cormac at c-obrien.org
Tue Aug 18 18:17:30 CET 2015
Modify some basic device tree properties to more accurately emulate a real Mac
machine.
Signed-off-by: Cormac O'Brien <cormac at c-obrien.org>
---
drivers/cuda.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/cuda.c b/drivers/cuda.c
index 9555dea..f117b0b 100644
--- a/drivers/cuda.c
+++ b/drivers/cuda.c
@@ -380,7 +380,8 @@ powermgt_init(char *path)
ph = find_dev(buf);
set_property(ph, "device_type", "power-mgt", 10);
- set_property(ph, "compatible", "power-mgt", 10);
+ set_property(ph, "mgt-kind", "min-consumption-pwm-led", strlen("min-consumption-pwm-led") + 1);
+ set_property(ph, "compatible", "cuda", strlen("cuda") + 1);
}
cuda_t *cuda_init (const char *path, phys_addr_t base)
--
2.5.0
More information about the OpenBIOS
mailing list