Hi, Your series seems to have some coding style problems. See output below for more information:
Type: series Message-id: 1474564935-23831-1-git-send-email-peter.mayd...@linaro.org Subject: [Qemu-devel] [PULL 00/36] target-arm queue === TEST SCRIPT BEGIN === #!/bin/bash BASE=base n=1 total=$(git log --oneline $BASE.. | wc -l) failed=0 # Useful git options git config --local diff.renamelimit 0 git config --local diff.renames True commits="$(git log --format=%H --reverse $BASE..)" for c in $commits; do echo "Checking PATCH $n/$total: $(git show --no-patch --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 From https://github.com/patchew-project/qemu * [new tag] patchew/1474564935-23831-1-git-send-email-peter.mayd...@linaro.org -> patchew/1474564935-23831-1-git-send-email-peter.mayd...@linaro.org Switched to a new branch 'test' 5968e02 imx: Use 'const char', not 'char const' 1fb0cf3 disas/arm.c: Remove unused macro definitions f347c98 vmstateify ssi-sd 9f4c6c7 vmstateify ssd0323 display 0e81a82 dma: xlnx-zynq-devcfg: Fix up XLNX_ZYNQ_DEVCFG_R_MAX a40249e loader: Add AddressSpace loading support to targphys bd6b978 loader: Add AddressSpace loading support to uImages 79a76bc loader: Add AddressSpace loading support to ELFs 7732745 loader: Allow a custom AddressSpace when loading ROMs a8295d6 loader: Use the specified MemoryRegion b9f8718 loader: Allow ELF loader to auto-detect the ELF arch 730e6a6 xlnx-zynqmp: Set the number of priority queues 7c1190d cadence_gem: Correct indentation f43c4cb cadence_gem: Add queue support 99929ad cadence_gem: Add support for screening f89652a cadence_gem: Add the num-priority-queues property 19770cb cadence_gem: QOMify Cadence GEM abb1719 tests: Add ptimer tests bc870db hw/ptimer: Suppress error messages under qtest 92bbf61 hw/ptimer: Introduce timer policy feature 91bd052 hw/ptimer: Actually stop the timer in case of error 9b990c0 aspeed: allocate RAM after the memory controller has checked the size f20b9d3 aspeed: add a ram_size property to the memory controller d8437c9 aspeed: use error_report instead of LOG_GUEST_ERROR 7707c96 aspeed: calculate the RAM size bits at realize time 83c7ed2 palmetto-bmc: remove extra no_sdcard assignement bfd6c40 arm: add support for an ast2500 evaluation board 1d6d8ff aspeed: add a ast2500 SoC and support to the SCU and SDMC controllers 72d67aa hw/misc: use macros to define hw-strap1 register on the AST2400 Aspeed SoC 74a36a5 palmetto-bmc: add board specific configuration 786f13c palmetto-bmc: replace palmetto_bmc with aspeed 7dfef30 palmetto-bmc: rename the Aspeed board file to aspeed.c 00956c8 aspeed-soc: provide a framework to add new SoCs aeb8aac ast2400: replace ast2400 with aspeed_soc 910bc01 ast2400: rename the Aspeed SoC files to aspeed_soc 6ad8241 arm: add Cortex A7 CPU parameters === OUTPUT BEGIN === Checking PATCH 1/36: arm: add Cortex A7 CPU parameters... Checking PATCH 2/36: ast2400: rename the Aspeed SoC files to aspeed_soc... Checking PATCH 3/36: ast2400: replace ast2400 with aspeed_soc... Checking PATCH 4/36: aspeed-soc: provide a framework to add new SoCs... Checking PATCH 5/36: palmetto-bmc: rename the Aspeed board file to aspeed.c... Checking PATCH 6/36: palmetto-bmc: replace palmetto_bmc with aspeed... Checking PATCH 7/36: palmetto-bmc: add board specific configuration... Checking PATCH 8/36: hw/misc: use macros to define hw-strap1 register on the AST2400 Aspeed SoC... Checking PATCH 9/36: aspeed: add a ast2500 SoC and support to the SCU and SDMC controllers... Checking PATCH 10/36: arm: add support for an ast2500 evaluation board... Checking PATCH 11/36: palmetto-bmc: remove extra no_sdcard assignement... Checking PATCH 12/36: aspeed: calculate the RAM size bits at realize time... Checking PATCH 13/36: aspeed: use error_report instead of LOG_GUEST_ERROR... Checking PATCH 14/36: aspeed: add a ram_size property to the memory controller... Checking PATCH 15/36: aspeed: allocate RAM after the memory controller has checked the size... Checking PATCH 16/36: hw/ptimer: Actually stop the timer in case of error... Checking PATCH 17/36: hw/ptimer: Introduce timer policy feature... Checking PATCH 18/36: hw/ptimer: Suppress error messages under qtest... Checking PATCH 19/36: tests: Add ptimer tests... WARNING: line over 80 characters #694: FILE: tests/ptimer-test.c:525: + g_strdup_printf("/ptimer/on_the_fly_mode_change policy=%s", policy_name), WARNING: line over 80 characters #698: FILE: tests/ptimer-test.c:529: + g_strdup_printf("/ptimer/on_the_fly_period_change policy=%s", policy_name), WARNING: line over 80 characters #702: FILE: tests/ptimer-test.c:533: + g_strdup_printf("/ptimer/on_the_fly_freq_change policy=%s", policy_name), total: 0 errors, 3 warnings, 722 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 20/36: cadence_gem: QOMify Cadence GEM... Checking PATCH 21/36: cadence_gem: Add the num-priority-queues property... Checking PATCH 22/36: cadence_gem: Add support for screening... Checking PATCH 23/36: cadence_gem: Add queue support... ERROR: suspect code indent for conditional statements (4, 4) #154: FILE: hw/net/cadence_gem.c:1056: + for (q = s->num_priority_queues - 1; q >= 0; q--) { /* read current descriptor */ total: 1 errors, 0 warnings, 285 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 24/36: cadence_gem: Correct indentation... Checking PATCH 25/36: xlnx-zynqmp: Set the number of priority queues... Checking PATCH 26/36: loader: Allow ELF loader to auto-detect the ELF arch... Checking PATCH 27/36: loader: Use the specified MemoryRegion... Checking PATCH 28/36: loader: Allow a custom AddressSpace when loading ROMs... Checking PATCH 29/36: loader: Add AddressSpace loading support to ELFs... Checking PATCH 30/36: loader: Add AddressSpace loading support to uImages... Checking PATCH 31/36: loader: Add AddressSpace loading support to targphys... Checking PATCH 32/36: dma: xlnx-zynq-devcfg: Fix up XLNX_ZYNQ_DEVCFG_R_MAX... Checking PATCH 33/36: vmstateify ssd0323 display... Checking PATCH 34/36: vmstateify ssi-sd... Checking PATCH 35/36: disas/arm.c: Remove unused macro definitions... Checking PATCH 36/36: imx: Use 'const char', not 'char const'... === OUTPUT END === Test command exited with code: 1 --- Email generated automatically by Patchew [http://patchew.org/]. Please send your feedback to patchew-de...@freelists.org