[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH v2 02/47] Fixes after renaming __FUNCTION__ to _
From: |
Thomas Huth |
Subject: |
Re: [Qemu-devel] [PATCH v2 02/47] Fixes after renaming __FUNCTION__ to __func__ |
Date: |
Sat, 30 Sep 2017 08:31:29 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.3.0 |
On 30.09.2017 02:15, Alistair Francis wrote:
> Signed-off-by: Alistair Francis <address@hidden>
> Cc: Eric Blake <address@hidden>
> ---
>
> hw/arm/omap1.c | 4 ++--
> hw/arm/omap2.c | 2 +-
> hw/block/onenand.c | 2 +-
> 3 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/hw/arm/omap1.c b/hw/arm/omap1.c
> index 1388200191..64f2ee8356 100644
> --- a/hw/arm/omap1.c
> +++ b/hw/arm/omap1.c
> @@ -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;
> @@ -3336,7 +3336,7 @@ static void omap_mcbsp_writeh(void *opaque, hwaddr addr,
> s->mcr[0] = value & 0x03e1;
> if (value & 1) /* RMCM */
> printf("%s: Rx channel selection mode enable attempt\n",
> - __func__);
> + __func__);
That would now also fit into one line.
> return;
> case 0x1c: /* RCERA */
> s->rcer[0] = value & 0xffff;
> diff --git a/hw/arm/omap2.c b/hw/arm/omap2.c
> index b53878b8b9..758a26f3d8 100644
> --- a/hw/arm/omap2.c
> +++ b/hw/arm/omap2.c
> @@ -1312,7 +1312,7 @@ static void omap_prcm_apll_update(struct omap_prcm_s *s)
>
> if (mode[0] == 1 || mode[0] == 2 || mode[1] == 1 || mode[1] == 2)
> fprintf(stderr, "%s: bad EN_54M_PLL or bad EN_96M_PLL\n",
> - __func__);
> + __func__);
You're changing the indentation here again in patch 5 when you replace
it with error_report ... so this hunk really seems like unnecessary code
churn - I'd suggest to drop it.
> }
>
> static void omap_prcm_dpll_update(struct omap_prcm_s *s)
> diff --git a/hw/block/onenand.c b/hw/block/onenand.c
> index 7542ef9634..08c63adc9a 100644
> --- a/hw/block/onenand.c
> +++ b/hw/block/onenand.c
> @@ -663,7 +663,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;
> }
>
>
Thomas
- [Qemu-devel] [PATCH v2 00/47] Remove some of the fprintf(stderr, "*, Alistair Francis, 2017/09/29
- [Qemu-devel] [PATCH v2 02/47] Fixes after renaming __FUNCTION__ to __func__, Alistair Francis, 2017/09/29
- Re: [Qemu-devel] [PATCH v2 02/47] Fixes after renaming __FUNCTION__ to __func__,
Thomas Huth <=
- [Qemu-devel] [PATCH v2 03/47] audio: Replace AUDIO_FUNC with __func__, Alistair Francis, 2017/09/29
- [Qemu-devel] [PATCH v2 07/47] hw/bt: Replace fprintf(stderr, "*\n" with error_report(), Alistair Francis, 2017/09/29
- [Qemu-devel] [PATCH v2 05/47] hw/arm: Replace fprintf(stderr, "*\n" with error_report(), Alistair Francis, 2017/09/29
- [Qemu-devel] [PATCH v2 08/47] hw/char: Replace fprintf(stderr, "*\n" with error_report(), Alistair Francis, 2017/09/29
- [Qemu-devel] [PATCH v2 04/47] tests: Replace fprintf(stderr, "*\n" with error_report(), Alistair Francis, 2017/09/29
- [Qemu-devel] [PATCH v2 06/47] hw/block: Replace fprintf(stderr, "*\n" with error_report(), Alistair Francis, 2017/09/29
- [Qemu-devel] [PATCH v2 10/47] hw/cris: Replace fprintf(stderr, "*\n" with error_report(), Alistair Francis, 2017/09/29
- [Qemu-devel] [PATCH v2 11/47] hw/display: Replace fprintf(stderr, "*\n" with error_report(), Alistair Francis, 2017/09/29