Message ID | 20210616082524.10754-1-13145886936@163.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Bluetooth: fix a grammar mistake | expand |
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=501757 ---Test result--- Test Summary: CheckPatch PASS 0.81 seconds GitLint PASS 0.12 seconds BuildKernel PASS 510.68 seconds TestRunner: Setup PASS 336.66 seconds TestRunner: l2cap-tester PASS 2.81 seconds TestRunner: bnep-tester PASS 1.91 seconds TestRunner: mgmt-tester PASS 28.34 seconds TestRunner: rfcomm-tester PASS 2.05 seconds TestRunner: sco-tester PASS 1.99 seconds TestRunner: smp-tester PASS 2.07 seconds TestRunner: userchan-tester PASS 1.89 seconds Details ############################## Test: CheckPatch - PASS - 0.81 seconds Run checkpatch.pl script with rule in .checkpatch.conf ############################## Test: GitLint - PASS - 0.12 seconds Run gitlint with rule in .gitlint ############################## Test: BuildKernel - PASS - 510.68 seconds Build Kernel with minimal configuration supports Bluetooth ############################## Test: TestRunner: Setup - PASS - 336.66 seconds Setup environment for running Test Runner ############################## Test: TestRunner: l2cap-tester - PASS - 2.81 seconds Run test-runner with l2cap-tester Total: 40, Passed: 40 (100.0%), Failed: 0, Not Run: 0 ############################## Test: TestRunner: bnep-tester - PASS - 1.91 seconds Run test-runner with bnep-tester Total: 1, Passed: 1 (100.0%), Failed: 0, Not Run: 0 ############################## Test: TestRunner: mgmt-tester - PASS - 28.34 seconds Run test-runner with mgmt-tester Total: 446, Passed: 433 (97.1%), Failed: 0, Not Run: 13 ############################## Test: TestRunner: rfcomm-tester - PASS - 2.05 seconds Run test-runner with rfcomm-tester Total: 9, Passed: 9 (100.0%), Failed: 0, Not Run: 0 ############################## Test: TestRunner: sco-tester - PASS - 1.99 seconds Run test-runner with sco-tester Total: 8, Passed: 8 (100.0%), Failed: 0, Not Run: 0 ############################## Test: TestRunner: smp-tester - PASS - 2.07 seconds Run test-runner with smp-tester Total: 8, Passed: 8 (100.0%), Failed: 0, Not Run: 0 ############################## Test: TestRunner: userchan-tester - PASS - 1.89 seconds Run test-runner with userchan-tester Total: 3, Passed: 3 (100.0%), Failed: 0, Not Run: 0 --- Regards, Linux Bluetooth
On 16/06/2021 09:25, 13145886936@163.com wrote: > From: gushengxian <gushengxian@yulong.com> > > Fix a grammar mistake. > > Signed-off-by: gushengxian <gushengxian@yulong.com> > --- > net/bluetooth/hci_event.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c > index 98ec486743ba..a33838a72f19 100644 > --- a/net/bluetooth/hci_event.c > +++ b/net/bluetooth/hci_event.c > @@ -5780,7 +5780,7 @@ static void hci_le_remote_feat_complete_evt(struct hci_dev *hdev, > * for unsupported remote feature gets returned. > * > * In this specific case, allow the connection to > - * transition into connected state and mark it as > + * transit into connected state and mark it as Nack. The original phrasing is correct; "transition" is the proper technical term for a change of state in a state machine. -ed
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index 98ec486743ba..a33838a72f19 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c @@ -5780,7 +5780,7 @@ static void hci_le_remote_feat_complete_evt(struct hci_dev *hdev, * for unsupported remote feature gets returned. * * In this specific case, allow the connection to - * transition into connected state and mark it as + * transit into connected state and mark it as * successful. */ if (!conn->out && ev->status == 0x1a &&