aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Stanley <joel@jms.id.au>2017-09-05 15:52:02 +1000
committerStewart Smith <stewart@linux.vnet.ibm.com>2017-09-05 17:56:44 +1000
commitbf1751cc6b4b9cbfb4b476ce776b0010f3137c0d (patch)
treef98b80f6832c12b02e0e9074043e38de48df76ac
parent642ae25d03ee66af79ca397758f4fd69441b5df5 (diff)
downloadskiboot-bf1751cc6b4b9cbfb4b476ce776b0010f3137c0d.zip
skiboot-bf1751cc6b4b9cbfb4b476ce776b0010f3137c0d.tar.gz
skiboot-bf1751cc6b4b9cbfb4b476ce776b0010f3137c0d.tar.bz2
hw/chiptod: Fix indentation in opal_resync_timebase
Signed-off-by: Joel Stanley <joel@jms.id.au> Reviewed-by: Michael Neuling <mikey@neuling.org> Reviewed-by: Russell Currey <ruscur@russell.cc> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
-rw-r--r--hw/chiptod.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/hw/chiptod.c b/hw/chiptod.c
index 1b4d594..1dd1b26 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);