[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PULL 21/36] target/ppc: Style fixes for monitor.c
From: |
David Gibson |
Subject: |
[Qemu-ppc] [PULL 21/36] target/ppc: Style fixes for monitor.c |
Date: |
Fri, 26 Apr 2019 16:06:12 +1000 |
Signed-off-by: David Gibson <address@hidden>
Reviewed-by: Cédric Le Goater <address@hidden>
Reviewed-by: Greg Kurz <address@hidden>
---
target/ppc/monitor.c | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/target/ppc/monitor.c b/target/ppc/monitor.c
index 42e58163fc..ee9d6e81d2 100644
--- a/target/ppc/monitor.c
+++ b/target/ppc/monitor.c
@@ -27,32 +27,33 @@
#include "monitor/hmp-target.h"
#include "hmp.h"
-static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
+static target_long monitor_get_ccr(const struct MonitorDef *md, int val)
{
CPUArchState *env = mon_get_cpu_env();
unsigned int u;
int i;
u = 0;
- for (i = 0; i < 8; i++)
+ for (i = 0; i < 8; i++) {
u |= env->crf[i] << (32 - (4 * (i + 1)));
+ }
return u;
}
-static target_long monitor_get_decr (const struct MonitorDef *md, int val)
+static target_long monitor_get_decr(const struct MonitorDef *md, int val)
{
CPUArchState *env = mon_get_cpu_env();
return cpu_ppc_load_decr(env);
}
-static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
+static target_long monitor_get_tbu(const struct MonitorDef *md, int val)
{
CPUArchState *env = mon_get_cpu_env();
return cpu_ppc_load_tbu(env);
}
-static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
+static target_long monitor_get_tbl(const struct MonitorDef *md, int val)
{
CPUArchState *env = mon_get_cpu_env();
return cpu_ppc_load_tbl(env);
--
2.20.1
- [Qemu-ppc] [PULL 00/36] ppc-for-4.1 queue 20190426, David Gibson, 2019/04/26
- [Qemu-ppc] [PULL 02/36] hw/ppc/prep: Drop useless inclusion of "hw/input/i8042.h", David Gibson, 2019/04/26
- [Qemu-ppc] [PULL 04/36] spapr/irq: remove spapr_ics_create(), David Gibson, 2019/04/26
- [Qemu-ppc] [PULL 09/36] target/ppc: Style fixes for dfp_helper.c, David Gibson, 2019/04/26
- [Qemu-ppc] [PULL 18/36] target/ppc: Style fixes for mmu-hash32.[ch], David Gibson, 2019/04/26
- [Qemu-ppc] [PULL 21/36] target/ppc: Style fixes for monitor.c,
David Gibson <=
- [Qemu-ppc] [PULL 08/36] target/ppc: Style fixes for fpu_helper.c, David Gibson, 2019/04/26
- [Qemu-ppc] [PULL 07/36] target/ppc: Style fixes for int_helper.c, David Gibson, 2019/04/26
- [Qemu-ppc] [PULL 10/36] target/ppc: Style fixes for excp_helper.c, David Gibson, 2019/04/26
- [Qemu-ppc] [PULL 14/36] target/ppc: Style fixes for machine.c, David Gibson, 2019/04/26
- [Qemu-ppc] [PULL 12/36] target/ppc: Style fixes for helper_regs.h, David Gibson, 2019/04/26
- [Qemu-ppc] [PULL 05/36] target/ppc: Style fixes for ppc-models.[ch], David Gibson, 2019/04/26
- [Qemu-ppc] [PULL 11/36] target/ppc: Style fixes for gdbstub.c, David Gibson, 2019/04/26
- [Qemu-ppc] [PULL 06/36] target/ppc: Style fixes for cpu.[ch], David Gibson, 2019/04/26
- [Qemu-ppc] [PULL 16/36] target/ppc: Style fixes for mfrom_table.inc.c & mfrom_table_gen.c, David Gibson, 2019/04/26
- [Qemu-ppc] [PULL 17/36] target/ppc: Style fixes for misc_helper.c, David Gibson, 2019/04/26