diff mbox series

[-next] Bluetooth: btrsi: Add __init/__exit annotations to module init/exit funcs

Message ID 20220926092002.1191313-1-ruanjinjie@huawei.com (mailing list archive)
State New, archived
Headers show
Series [-next] Bluetooth: btrsi: Add __init/__exit annotations to module init/exit funcs | expand

Checks

Context Check Description
tedd_an/pre-ci_am success Success
tedd_an/checkpatch success Checkpatch PASS
tedd_an/gitlint fail [-next] Bluetooth: btrsi: Add __init/__exit annotations to module init/exit funcs 1: T1 Title exceeds max length (81>80): "[-next] Bluetooth: btrsi: Add __init/__exit annotations to module init/exit funcs"
tedd_an/subjectprefix success PASS
tedd_an/buildkernel success Build Kernel PASS
tedd_an/buildkernel32 success Build Kernel32 PASS
tedd_an/incremental_build success Pass
tedd_an/testrunnersetup success Test Runner Setup PASS
tedd_an/testrunnerl2cap-tester success Total: 40, Passed: 40 (100.0%), Failed: 0, Not Run: 0
tedd_an/testrunneriso-tester success Total: 55, Passed: 55 (100.0%), Failed: 0, Not Run: 0
tedd_an/testrunnerbnep-tester success Total: 1, Passed: 1 (100.0%), Failed: 0, Not Run: 0
tedd_an/testrunnermgmt-tester success Total: 494, Passed: 494 (100.0%), Failed: 0, Not Run: 0
tedd_an/testrunnerrfcomm-tester success Total: 11, Passed: 11 (100.0%), Failed: 0, Not Run: 0
tedd_an/testrunnersco-tester success Total: 12, Passed: 12 (100.0%), Failed: 0, Not Run: 0
tedd_an/testrunnerioctl-tester success Total: 28, Passed: 28 (100.0%), Failed: 0, Not Run: 0
tedd_an/testrunnersmp-tester success Total: 8, Passed: 8 (100.0%), Failed: 0, Not Run: 0
tedd_an/testrunneruserchan-tester success Total: 4, Passed: 4 (100.0%), Failed: 0, Not Run: 0

Commit Message

Jinjie Ruan Sept. 26, 2022, 9:20 a.m. UTC
Add missing __init/__exit annotations to module init/exit funcs

Signed-off-by: ruanjinjie <ruanjinjie@huawei.com>
---
 drivers/bluetooth/btrsi.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

bluez.test.bot@gmail.com Sept. 26, 2022, 10:16 a.m. UTC | #1
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=680405

---Test result---

Test Summary:
CheckPatch                    PASS      0.89 seconds
GitLint                       FAIL      0.46 seconds
SubjectPrefix                 PASS      0.33 seconds
BuildKernel                   PASS      46.37 seconds
BuildKernel32                 PASS      38.80 seconds
Incremental Build with patchesPASS      57.07 seconds
TestRunner: Setup             PASS      665.96 seconds
TestRunner: l2cap-tester      PASS      21.02 seconds
TestRunner: iso-tester        PASS      20.54 seconds
TestRunner: bnep-tester       PASS      7.89 seconds
TestRunner: mgmt-tester       PASS      129.42 seconds
TestRunner: rfcomm-tester     PASS      12.36 seconds
TestRunner: sco-tester        PASS      11.65 seconds
TestRunner: ioctl-tester      PASS      13.25 seconds
TestRunner: smp-tester        PASS      11.49 seconds
TestRunner: userchan-tester   PASS      8.15 seconds

Details
##############################
Test: GitLint - FAIL - 0.46 seconds
Run gitlint with rule in .gitlint
[-next] Bluetooth: btrsi: Add __init/__exit annotations to module init/exit funcs
1: T1 Title exceeds max length (81>80): "[-next] Bluetooth: btrsi: Add __init/__exit annotations to module init/exit funcs"




---
Regards,
Linux Bluetooth
diff mbox series

Patch

diff --git a/drivers/bluetooth/btrsi.c b/drivers/bluetooth/btrsi.c
index 634cf8f5ed2d..1d9a04badd3c 100644
--- a/drivers/bluetooth/btrsi.c
+++ b/drivers/bluetooth/btrsi.c
@@ -179,12 +179,12 @@  const struct rsi_mod_ops rsi_bt_ops = {
 };
 EXPORT_SYMBOL(rsi_bt_ops);
 
-static int rsi_91x_bt_module_init(void)
+static int __init rsi_91x_bt_module_init(void)
 {
 	return 0;
 }
 
-static void rsi_91x_bt_module_exit(void)
+static void __exit rsi_91x_bt_module_exit(void)
 {
 	return;
 }