Re: [Qemu-devel] [PATCH v5 01/29] audio: Replace AUDIO_FUNC with __func__

2017-11-14 Thread Gerd Hoffmann
On Mon, Nov 13, 2017 at 02:34:39PM -0800, Alistair Francis wrote: > Apparently we don't use __MSC_VER as a compiler anymore and we always > require a C99 compiler (which means we always have __func__) so we don't > need a special AUDIO_FUNC macro. We can just replace AUDIO_FUNC with > __func__ inst

[Qemu-devel] [PATCH v5 01/29] audio: Replace AUDIO_FUNC with __func__

2017-11-13 Thread Alistair Francis
Apparently we don't use __MSC_VER as a compiler anymore and we always require a C99 compiler (which means we always have __func__) so we don't need a special AUDIO_FUNC macro. We can just replace AUDIO_FUNC with __func__ instead. Checkpatch failures were manually fixed. Signed-off-by: Alistair Fr