Patchew URL: https://patchew.org/QEMU/20190607091116.49044-1-ys...@users.sourceforge.jp/
Hi, This series seems to have some coding style problems. See output below for more information: Subject: [Qemu-devel] [PATCH v17 00/24] Add RX archtecture support Message-id: 20190607091116.49044-1-ys...@users.sourceforge.jp Type: series === TEST SCRIPT BEGIN === #!/bin/bash git rev-parse base > /dev/null || exit 0 git config --local diff.renamelimit 0 git config --local diff.renames True git config --local diff.algorithm histogram ./scripts/checkpatch.pl --mailback base.. === TEST SCRIPT END === Switched to a new branch 'test' 7d17741 target/rx: Remove suffix in cpu class. 055eac1 target/rx: Dump bytes for each insn during disassembly 5889886 target/rx: Collect all bytes during disassembly 8d96e1b target/rx: Emit all disassembly in one prt() ca74c35 target/rx: Use prt_ldmi for XCHG_mr disassembly fa4556d target/rx: Replace operand with prt_ldmi in disassembler f264e8b target/rx: Disassemble rx_index_addr into a string d50d585 MAINTAINERS: Add RX 5cd47e7 Add rx-softmmu 621ef37 hw/rx: Honor -accel qtest f12f4c1 tests: Add rx to machine-none-test.c 6d30cec target/rx: Fix cpu types and names 67e5be8 target/rx: Add RX to SysEmuTarget e53a4a5 target/rx: Convert to CPUClass::tlb_fill 88286fa hw/registerfields.h: Add 8bit and 16bit register macros a063aa8 qemu/bitops.h: Add extract8 and extract16 180659a hw/rx: RX Target hardware definition b9a1904 hw/char: RX62N serial communication interface (SCI) af4236a hw/timer: RX62N internal timer modules f4333f3 hw/intc: RX62N interrupt controller (ICUa) e019cb8 target/rx: RX disassembler 76a68b1 target/rx: CPU definition 1d6e5b8 target/rx: TCG helper 017f9e4 target/rx: TCG translation === OUTPUT BEGIN === 1/24 Checking commit 017f9e4d6eff (target/rx: TCG translation) WARNING: added, moved or deleted file(s), does MAINTAINERS need updating? #19: new file mode 100644 total: 0 errors, 1 warnings, 3065 lines checked Patch 1/24 has style problems, please review. If any of these errors are false positives report them to the maintainer, see CHECKPATCH in MAINTAINERS. 2/24 Checking commit 1d6e5b8a6919 (target/rx: TCG helper) WARNING: added, moved or deleted file(s), does MAINTAINERS need updating? #14: new file mode 100644 total: 0 errors, 1 warnings, 660 lines checked Patch 2/24 has style problems, please review. If any of these errors are false positives report them to the maintainer, see CHECKPATCH in MAINTAINERS. 3/24 Checking commit 76a68b18cd6e (target/rx: CPU definition) WARNING: added, moved or deleted file(s), does MAINTAINERS need updating? #14: new file mode 100644 total: 0 errors, 1 warnings, 599 lines checked Patch 3/24 has style problems, please review. If any of these errors are false positives report them to the maintainer, see CHECKPATCH in MAINTAINERS. 4/24 Checking commit e019cb819a73 (target/rx: RX disassembler) WARNING: added, moved or deleted file(s), does MAINTAINERS need updating? #38: new file mode 100644 total: 0 errors, 1 warnings, 1497 lines checked Patch 4/24 has style problems, please review. If any of these errors are false positives report them to the maintainer, see CHECKPATCH in MAINTAINERS. 5/24 Checking commit f4333f347c4d (hw/intc: RX62N interrupt controller (ICUa)) WARNING: added, moved or deleted file(s), does MAINTAINERS need updating? #39: new file mode 100644 total: 0 errors, 1 warnings, 442 lines checked Patch 5/24 has style problems, please review. If any of these errors are false positives report them to the maintainer, see CHECKPATCH in MAINTAINERS. 6/24 Checking commit af4236ab4b8b (hw/timer: RX62N internal timer modules) WARNING: added, moved or deleted file(s), does MAINTAINERS need updating? #49: new file mode 100644 total: 0 errors, 1 warnings, 839 lines checked Patch 6/24 has style problems, please review. If any of these errors are false positives report them to the maintainer, see CHECKPATCH in MAINTAINERS. 7/24 Checking commit b9a190420fbd (hw/char: RX62N serial communication interface (SCI)) WARNING: added, moved or deleted file(s), does MAINTAINERS need updating? #42: new file mode 100644 total: 0 errors, 1 warnings, 398 lines checked Patch 7/24 has style problems, please review. If any of these errors are false positives report them to the maintainer, see CHECKPATCH in MAINTAINERS. 8/24 Checking commit 180659a9e467 (hw/rx: RX Target hardware definition) WARNING: added, moved or deleted file(s), does MAINTAINERS need updating? #18: new file mode 100644 total: 0 errors, 1 warnings, 460 lines checked Patch 8/24 has style problems, please review. If any of these errors are false positives report them to the maintainer, see CHECKPATCH in MAINTAINERS. 9/24 Checking commit a063aa8f9e24 (qemu/bitops.h: Add extract8 and extract16) 10/24 Checking commit 88286fa55544 (hw/registerfields.h: Add 8bit and 16bit register macros) Use of uninitialized value in concatenation (.) or string at ./scripts/checkpatch.pl line 2467. ERROR: Macros with multiple statements should be enclosed in a do - while loop #25: FILE: include/hw/registerfields.h:25: +#define REG8(reg, addr) \ + enum { A_ ## reg = (addr) }; \ + enum { R_ ## reg = (addr) }; ERROR: Macros with multiple statements should be enclosed in a do - while loop #29: FILE: include/hw/registerfields.h:29: +#define REG16(reg, addr) \ + enum { A_ ## reg = (addr) }; \ + enum { R_ ## reg = (addr) / 2 }; total: 2 errors, 0 warnings, 56 lines checked Patch 10/24 has style problems, please review. If any of these errors are false positives report them to the maintainer, see CHECKPATCH in MAINTAINERS. 11/24 Checking commit e53a4a599b28 (target/rx: Convert to CPUClass::tlb_fill) 12/24 Checking commit 67e5be80711d (target/rx: Add RX to SysEmuTarget) 13/24 Checking commit 6d30ceccc05f (target/rx: Fix cpu types and names) 14/24 Checking commit f12f4c14f4c8 (tests: Add rx to machine-none-test.c) 15/24 Checking commit 621ef3747ee7 (hw/rx: Honor -accel qtest) 16/24 Checking commit 5cd47e7ef3ac (Add rx-softmmu) WARNING: added, moved or deleted file(s), does MAINTAINERS need updating? #54: new file mode 100644 total: 0 errors, 1 warnings, 45 lines checked Patch 16/24 has style problems, please review. If any of these errors are false positives report them to the maintainer, see CHECKPATCH in MAINTAINERS. 17/24 Checking commit d50d585c90c3 (MAINTAINERS: Add RX) 18/24 Checking commit f264e8b4e13b (target/rx: Disassemble rx_index_addr into a string) 19/24 Checking commit fa4556d91128 (target/rx: Replace operand with prt_ldmi in disassembler) 20/24 Checking commit ca74c35ac73d (target/rx: Use prt_ldmi for XCHG_mr disassembly) 21/24 Checking commit 8d96e1b3b74d (target/rx: Emit all disassembly in one prt()) 22/24 Checking commit 588988643d4e (target/rx: Collect all bytes during disassembly) 23/24 Checking commit 055eac109bec (target/rx: Dump bytes for each insn during disassembly) 24/24 Checking commit 7d17741430a6 (target/rx: Remove suffix in cpu class.) === OUTPUT END === Test command exited with code: 1 The full log is available at http://patchew.org/logs/20190607091116.49044-1-ys...@users.sourceforge.jp/testing.checkpatch/?type=message. --- Email generated automatically by Patchew [https://patchew.org/]. Please send your feedback to patchew-de...@redhat.com