diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2013-09-22 22:05:08 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2013-10-11 01:48:54 -0400 |
commit | 5c94913c5f9834b0d35e20359db457783962bed5 (patch) | |
tree | fefb65edb10e3560b9acabeca75734789bc51863 /drivers/tty/hvc | |
parent | 99fc1d91b8fc30c969b0a2d152c803413ecb8cef (diff) |
tty/hvc_opal: powerpc: Make OPAL HVC device tree accesses endian safe
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'drivers/tty/hvc')
-rw-r--r-- | drivers/tty/hvc/hvc_opal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/tty/hvc/hvc_opal.c b/drivers/tty/hvc/hvc_opal.c index cd69b48f6dfd..6496872e2e47 100644 --- a/drivers/tty/hvc/hvc_opal.c +++ b/drivers/tty/hvc/hvc_opal.c | |||
@@ -329,7 +329,7 @@ static void udbg_init_opal_common(void) | |||
329 | void __init hvc_opal_init_early(void) | 329 | void __init hvc_opal_init_early(void) |
330 | { | 330 | { |
331 | struct device_node *stdout_node = NULL; | 331 | struct device_node *stdout_node = NULL; |
332 | const u32 *termno; | 332 | const __be32 *termno; |
333 | const char *name = NULL; | 333 | const char *name = NULL; |
334 | const struct hv_ops *ops; | 334 | const struct hv_ops *ops; |
335 | u32 index; | 335 | u32 index; |
@@ -371,7 +371,7 @@ void __init hvc_opal_init_early(void) | |||
371 | if (!stdout_node) | 371 | if (!stdout_node) |
372 | return; | 372 | return; |
373 | termno = of_get_property(stdout_node, "reg", NULL); | 373 | termno = of_get_property(stdout_node, "reg", NULL); |
374 | index = termno ? *termno : 0; | 374 | index = termno ? be32_to_cpup(termno) : 0; |
375 | if (index >= MAX_NR_HVC_CONSOLES) | 375 | if (index >= MAX_NR_HVC_CONSOLES) |
376 | return; | 376 | return; |
377 | hvc_opal_privs[index] = &hvc_opal_boot_priv; | 377 | hvc_opal_privs[index] = &hvc_opal_boot_priv; |