]> Git Repo - qemu.git/commitdiff
Fixes after renaming __FUNCTION__ to __func__
authorAlistair Francis <[email protected]>
Wed, 8 Nov 2017 22:56:34 +0000 (14:56 -0800)
committerThomas Huth <[email protected]>
Mon, 22 Jan 2018 08:46:57 +0000 (09:46 +0100)
Signed-off-by: Alistair Francis <[email protected]>
Cc: Eric Blake <[email protected]>
Reviewed-by: Eric Blake <[email protected]>
Signed-off-by: Thomas Huth <[email protected]>
hw/arm/omap1.c
hw/block/onenand.c

index 13882001918d6c88caf19bc0a1b474796c69df43..92e58f09c83a3ff6836f959b098997c999f39015 100644 (file)
@@ -1717,7 +1717,7 @@ static void omap_clkm_write(void *opaque, hwaddr addr,
         if ((s->clkm.clocking_scheme ^ (value >> 11)) & 7) {
             s->clkm.clocking_scheme = (value >> 11) & 7;
             printf("%s: clocking scheme set to %s\n", __func__,
-                            clkschemename[s->clkm.clocking_scheme]);
+                   clkschemename[s->clkm.clocking_scheme]);
         }
         s->clkm.cold_start &= value & 0x3f;
         return;
@@ -3329,14 +3329,12 @@ static void omap_mcbsp_writeh(void *opaque, hwaddr addr,
     case 0x18: /* MCR2 */
         s->mcr[1] = value & 0x03e3;
         if (value & 3)                                 /* XMCM */
-            printf("%s: Tx channel selection mode enable attempt\n",
-                            __func__);
+            printf("%s: Tx channel selection mode enable attempt\n", __func__);
         return;
     case 0x1a: /* MCR1 */
         s->mcr[0] = value & 0x03e1;
         if (value & 1)                                 /* RMCM */
-            printf("%s: Rx channel selection mode enable attempt\n",
-                            __func__);
+            printf("%s: Rx channel selection mode enable attempt\n", __func__);
         return;
     case 0x1c: /* RCERA */
         s->rcer[0] = value & 0xffff;
index e243182394b857aa34d9e8041d7da4955aaa32ab..ed77f859e9e45550f7c5c8ae97f761d5fa201fb6 100644 (file)
@@ -659,7 +659,7 @@ static uint64_t onenand_read(void *opaque, hwaddr addr,
     case 0xff02:       /* ECC Result of spare area data */
     case 0xff03:       /* ECC Result of main area data */
     case 0xff04:       /* ECC Result of spare area data */
-        hw_error("%s: imeplement ECC\n", __func__);
+        hw_error("%s: implement ECC\n", __func__);
         return 0x0000;
     }
 
This page took 0.032793 seconds and 4 git commands to generate.