Message ID | 20220330223252.42136-1-rikard.falkeborn@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 30b0001fcdc1009071ce1facfb9c80a174b0260f |
Headers | show |
Series | Bluetooth: btintel: Constify static struct regmap_bus | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
tedd_an/checkpatch | success | Checkpatch PASS |
tedd_an/gitlint | success | Gitlint PASS |
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/testrunnerbnep-tester | success | Total: 1, Passed: 1 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnermgmt-tester | success | Total: 493, Passed: 493 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnerrfcomm-tester | success | Total: 10, Passed: 10 (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/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 |
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=627655 ---Test result--- Test Summary: CheckPatch PASS 1.62 seconds GitLint PASS 0.98 seconds SubjectPrefix PASS 0.87 seconds BuildKernel PASS 33.48 seconds BuildKernel32 PASS 29.99 seconds Incremental Build with patchesPASS 40.13 seconds TestRunner: Setup PASS 494.49 seconds TestRunner: l2cap-tester PASS 16.50 seconds TestRunner: bnep-tester PASS 6.43 seconds TestRunner: mgmt-tester PASS 106.51 seconds TestRunner: rfcomm-tester PASS 8.49 seconds TestRunner: sco-tester PASS 8.29 seconds TestRunner: smp-tester PASS 8.33 seconds TestRunner: userchan-tester PASS 6.81 seconds --- Regards, Linux Bluetooth
Hello: This patch was applied to bluetooth/bluetooth-next.git (master) by Marcel Holtmann <marcel@holtmann.org>: On Thu, 31 Mar 2022 00:32:52 +0200 you wrote: > The only usage of regmap_ibt is to (after the regmap_init() macro is > expanded), pass its address to __regmap_init(), which takes a pointer to > const struct regmap_bus as input. Make it const to allow the compiler to > put it in read-only memory. > > Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com> > > [...] Here is the summary with links: - Bluetooth: btintel: Constify static struct regmap_bus https://git.kernel.org/bluetooth/bluetooth-next/c/30b0001fcdc1 You are awesome, thank you!
diff --git a/drivers/bluetooth/btintel.c b/drivers/bluetooth/btintel.c index 06514ed66022..818681c89db8 100644 --- a/drivers/bluetooth/btintel.c +++ b/drivers/bluetooth/btintel.c @@ -794,7 +794,7 @@ static void regmap_ibt_free_context(void *context) kfree(context); } -static struct regmap_bus regmap_ibt = { +static const struct regmap_bus regmap_ibt = { .read = regmap_ibt_read, .write = regmap_ibt_write, .gather_write = regmap_ibt_gather_write,
The only usage of regmap_ibt is to (after the regmap_init() macro is expanded), pass its address to __regmap_init(), which takes a pointer to const struct regmap_bus as input. Make it const to allow the compiler to put it in read-only memory. Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com> --- drivers/bluetooth/btintel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)