Patchew URL: https://patchew.org/QEMU/cover.1545425136.git.yaroslav.isa...@gmail.com/
Hi, This series seems to have some coding style problems. See output below for more information: Message-id: cover.1545425136.git.yaroslav.isa...@gmail.com Type: series Subject: [Qemu-devel] [PATCH 0/3] Allow hw/audio drivers to pass raw DB values to audio/ drivers === TEST SCRIPT BEGIN === #!/bin/bash BASE=base n=1 total=$(git log --oneline $BASE.. | wc -l) failed=0 git config --local diff.renamelimit 0 git config --local diff.renames True git config --local diff.algorithm histogram commits="$(git log --format=%H --reverse $BASE..)" for c in $commits; do echo "Checking PATCH $n/$total: $(git log -n 1 --format=%s $c)..." if ! git show $c --format=email | ./scripts/checkpatch.pl --mailback -; then failed=1 echo fi n=$((n+1)) done exit $failed === TEST SCRIPT END === Updating 3c8cf5a9c21ff8782164d1def7f44bd888713384 Switched to a new branch 'test' a581faa If raw DB values are known, use them in paaudio de78230 Pass raw DB values from hda-codec.c to audio driver 4bbc16a Allow audio driver to pass DB value to underlying drivers === OUTPUT BEGIN === Checking PATCH 1/3: Allow audio driver to pass DB value to underlying drivers... ERROR: space required after that ';' (ctx:VxV) #95: FILE: audio/mixeng.h:35: + bool db_known; double r_db; double l_db;}; ^ total: 1 errors, 0 warnings, 193 lines checked Your patch has style problems, please review. If any of these errors are false positives report them to the maintainer, see CHECKPATCH in MAINTAINERS. Checking PATCH 2/3: Pass raw DB values from hda-codec.c to audio driver... Checking PATCH 3/3: If raw DB values are known, use them in paaudio... ERROR: line over 90 characters #23: FILE: audio/paaudio.c:731: + v.values[0] = ((PA_VOLUME_NORM - PA_VOLUME_MUTED) * sw->vol.l) / UINT32_MAX; ERROR: line over 90 characters #24: FILE: audio/paaudio.c:732: + v.values[1] = ((PA_VOLUME_NORM - PA_VOLUME_MUTED) * sw->vol.r) / UINT32_MAX; total: 2 errors, 0 warnings, 15 lines checked Your patch has style problems, please review. If any of these errors are false positives report them to the maintainer, see CHECKPATCH in MAINTAINERS. === OUTPUT END === Test command exited with code: 1 The full log is available at http://patchew.org/logs/cover.1545425136.git.yaroslav.isa...@gmail.com/testing.checkpatch/?type=message. --- Email generated automatically by Patchew [http://patchew.org/]. Please send your feedback to patchew-de...@redhat.com