]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
ddr: altera: Internal rw_mgr_mem_calibrate_vfifo() cleanup part 5
authorMarek Vasut <marex@denx.de>
Fri, 17 Jul 2015 01:54:34 +0000 (03:54 +0200)
committerLothar Waßmann <LW@KARO-electronics.de>
Thu, 10 Sep 2015 06:17:28 +0000 (08:17 +0200)
This is kind of microseries-within-series indent cleanup.
This patch fixes the broken formatting strings in debug_cond()
invocations.

It is likely that this patch has checkpatch warnings, but
for the sake of not breaking the code, these are ignored.

No functional change.

Signed-off-by: Marek Vasut <marex@denx.de>
drivers/ddr/altera/sequencer.c

index 2d16ce5c88aea4d1e3b95db49da9b0d00129ab48..03cfefda1ca7b6f83f0fff33575d4cb9642b5e6f 100644 (file)
@@ -2245,9 +2245,9 @@ static uint32_t rw_mgr_mem_calibrate_vfifo(uint32_t read_group,
                        /* set a particular dqdqs phase */
                        scc_mgr_set_dqdqs_output_phase_all_ranks(read_group, p);
 
-                       debug_cond(DLEVEL == 1, "%s:%d calibrate_vfifo: g=%u \
-                                  p=%u d=%u\n", __func__, __LINE__,
-                                  read_group, p, d);
+                       debug_cond(DLEVEL == 1,
+                                  "%s:%d calibrate_vfifo: g=%u p=%u d=%u\n",
+                                  __func__, __LINE__, read_group, p, d);
 
                        /*
                         * Load up the patterns used by read calibration
@@ -2257,10 +2257,9 @@ static uint32_t rw_mgr_mem_calibrate_vfifo(uint32_t read_group,
                        if (!(gbl->phy_debug_mode_flags & PHY_DEBUG_DISABLE_GUARANTEED_READ)) {
                                if (!rw_mgr_mem_calibrate_read_test_patterns_all_ranks
                                                                (read_group, 1, &bit_chk)) {
-                                       debug_cond(DLEVEL == 1, "%s:%d Guaranteed read test failed:",
-                                                  __func__, __LINE__);
-                                       debug_cond(DLEVEL == 1, " g=%u p=%u d=%u\n",
-                                                  read_group, p, d);
+                                       debug_cond(DLEVEL == 1,
+                                                  "%s:%d Guaranteed read test failed: g=%u p=%u d=%u\n",
+                                                  __func__, __LINE__, read_group, p, d);
                                        break;
                                }
                        }