Message ID | 20230408164542.2316-1-u202212060@hust.edu.cn (mailing list archive) |
---|---|
State | Accepted |
Commit | 2df7d630ef5353bffea9abc52081e7c0e4270a55 |
Headers | show |
Series | net: bluetooth: hci_debugfs: fix inconsistent indenting | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
tedd_an/CheckPatch | warning | WARNING: From:/Signed-off-by: email name mismatch: 'From: markli <u202212060@hust.edu.cn>' != 'Signed-off-by: Lanzhe Li <u202212060@hust.edu.cn>' total: 0 errors, 1 warnings, 0 checks, 8 lines checked NOTE: For some of the reported defects, checkpatch may be able to mechanically convert to the typical style using --fix or --fix-inplace. /github/workspace/src/src/13205785.patch has style problems, please review. NOTE: Ignored message types: UNKNOWN_COMMIT_ID NOTE: If any of the errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS. |
tedd_an/GitLint | success | Gitlint PASS |
tedd_an/SubjectPrefix | fail | "Bluetooth: " prefix is not specified in the subject |
tedd_an/BuildKernel | success | BuildKernel PASS |
tedd_an/CheckAllWarning | success | CheckAllWarning PASS |
tedd_an/CheckSparse | success | CheckSparse PASS |
tedd_an/CheckSmatch | success | CheckSparse PASS |
tedd_an/BuildKernel32 | success | BuildKernel32 PASS |
tedd_an/TestRunnerSetup | success | TestRunnerSetup PASS |
tedd_an/TestRunner_l2cap-tester | success | TestRunner PASS |
tedd_an/TestRunner_iso-tester | success | TestRunner PASS |
tedd_an/TestRunner_bnep-tester | success | TestRunner PASS |
tedd_an/TestRunner_mgmt-tester | success | TestRunner PASS |
tedd_an/TestRunner_rfcomm-tester | success | TestRunner PASS |
tedd_an/TestRunner_sco-tester | success | TestRunner PASS |
tedd_an/TestRunner_ioctl-tester | success | TestRunner PASS |
tedd_an/TestRunner_mesh-tester | success | TestRunner PASS |
tedd_an/TestRunner_smp-tester | success | TestRunner PASS |
tedd_an/TestRunner_userchan-tester | success | TestRunner PASS |
tedd_an/IncrementalBuild | success | Incremental Build PASS |
This is automated email and please do not reply to this email! Dear submitter, Thank you for submitting the patches to the linux bluetooth mailing list. This is a CI test results with your patch series: PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=738211 ---Test result--- Test Summary: CheckPatch FAIL 0.93 seconds GitLint PASS 0.36 seconds SubjectPrefix FAIL 0.39 seconds BuildKernel PASS 36.61 seconds CheckAllWarning PASS 39.95 seconds CheckSparse PASS 45.55 seconds CheckSmatch PASS 120.89 seconds BuildKernel32 PASS 34.41 seconds TestRunnerSetup PASS 498.88 seconds TestRunner_l2cap-tester PASS 17.98 seconds TestRunner_iso-tester PASS 18.74 seconds TestRunner_bnep-tester PASS 6.31 seconds TestRunner_mgmt-tester PASS 123.48 seconds TestRunner_rfcomm-tester PASS 9.83 seconds TestRunner_sco-tester PASS 8.99 seconds TestRunner_ioctl-tester PASS 10.58 seconds TestRunner_mesh-tester PASS 7.79 seconds TestRunner_smp-tester PASS 8.85 seconds TestRunner_userchan-tester PASS 6.63 seconds IncrementalBuild PASS 32.33 seconds Details ############################## Test: CheckPatch - FAIL Desc: Run checkpatch.pl script Output: net: bluetooth: hci_debugfs: fix inconsistent indenting WARNING: From:/Signed-off-by: email name mismatch: 'From: markli <u202212060@hust.edu.cn>' != 'Signed-off-by: Lanzhe Li <u202212060@hust.edu.cn>' total: 0 errors, 1 warnings, 0 checks, 8 lines checked NOTE: For some of the reported defects, checkpatch may be able to mechanically convert to the typical style using --fix or --fix-inplace. /github/workspace/src/src/13205785.patch has style problems, please review. NOTE: Ignored message types: UNKNOWN_COMMIT_ID NOTE: If any of the errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS. ############################## Test: SubjectPrefix - FAIL Desc: Check subject contains "Bluetooth" prefix Output: "Bluetooth: " prefix is not specified in the subject --- Regards, Linux Bluetooth
On Sun, Apr 09, 2023 at 12:45:42AM +0800, Lanzhe Li wrote: > From: markli <u202212060@hust.edu.cn> > > Fixed a wrong indentation before "return".This line uses a 7 space > indent instead of a tab. > > Signed-off-by: Lanzhe Li <u202212060@hust.edu.cn> Thanks, I checked and this seems to be the only instance of this type of problem in this file. Reviewed-by: Simon Horman <simon.horman@corigine.com> > --- > net/bluetooth/hci_debugfs.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/net/bluetooth/hci_debugfs.c b/net/bluetooth/hci_debugfs.c > index b7f682922a16..ec0df2f9188e 100644 > --- a/net/bluetooth/hci_debugfs.c > +++ b/net/bluetooth/hci_debugfs.c > @@ -189,7 +189,7 @@ static int uuids_show(struct seq_file *f, void *p) > } > hci_dev_unlock(hdev); > > - return 0; > + return 0; > } > > DEFINE_SHOW_ATTRIBUTE(uuids); > -- > 2.37.2 >
Hello: This patch was applied to bluetooth/bluetooth-next.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Sun, 9 Apr 2023 00:45:42 +0800 you wrote: > From: markli <u202212060@hust.edu.cn> > > Fixed a wrong indentation before "return".This line uses a 7 space > indent instead of a tab. > > Signed-off-by: Lanzhe Li <u202212060@hust.edu.cn> > > [...] Here is the summary with links: - net: bluetooth: hci_debugfs: fix inconsistent indenting https://git.kernel.org/bluetooth/bluetooth-next/c/2df7d630ef53 You are awesome, thank you!
diff --git a/net/bluetooth/hci_debugfs.c b/net/bluetooth/hci_debugfs.c index b7f682922a16..ec0df2f9188e 100644 --- a/net/bluetooth/hci_debugfs.c +++ b/net/bluetooth/hci_debugfs.c @@ -189,7 +189,7 @@ static int uuids_show(struct seq_file *f, void *p) } hci_dev_unlock(hdev); - return 0; + return 0; } DEFINE_SHOW_ATTRIBUTE(uuids);