diff mbox series

[25/25] hw/chiptod: Fix indentation in opal_resync_timebase

Message ID 20170905055202.8216-26-joel@jms.id.au
State Accepted
Headers show
Series Checkpatch fixes | expand

Commit Message

Joel Stanley Sept. 5, 2017, 5:52 a.m. UTC
Signed-off-by: Joel Stanley <joel@jms.id.au>
---
 hw/chiptod.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
diff mbox series

Patch

diff --git a/hw/chiptod.c b/hw/chiptod.c
index 1b4d594d51e2..1dd1b26059f7 100644
--- a/hw/chiptod.c
+++ b/hw/chiptod.c
@@ -1579,12 +1579,12 @@  error_out:
 
 static int64_t opal_resync_timebase(void)
 {
-       if (!chiptod_wakeup_resync()) {
-	       prerror("OPAL: Resync timebase failed on CPU 0x%04x\n",
-		      this_cpu()->pir);
-	       return OPAL_HARDWARE;
-       }
-       return OPAL_SUCCESS;
+	if (!chiptod_wakeup_resync()) {
+		prerror("OPAL: Resync timebase failed on CPU 0x%04x\n",
+			this_cpu()->pir);
+		return OPAL_HARDWARE;
+	}
+	return OPAL_SUCCESS;
 }
 opal_call(OPAL_RESYNC_TIMEBASE, opal_resync_timebase, 0);