Message ID | AM8PR05MB8292DD484EF2EE569F04BF2DEA1F9@AM8PR05MB8292.eurprd05.prod.outlook.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | `SimAccessTest1.CardStatus`: Mark status as `uint` | 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=510177 ---Test result--- Test Summary: CheckPatch PASS 0.34 seconds GitLint PASS 0.14 seconds Prep - Setup ELL PASS 52.51 seconds Build - Prep PASS 0.16 seconds Build - Configure PASS 9.36 seconds Build - Make PASS 231.65 seconds Make Check PASS 9.36 seconds Make Distcheck PASS 277.56 seconds Build w/ext ELL - Configure PASS 9.14 seconds Build w/ext ELL - Make PASS 221.35 seconds Details ############################## Test: CheckPatch - PASS Desc: Run checkpatch.pl script with rule in .checkpatch.conf ############################## Test: GitLint - PASS Desc: Run gitlint with rule in .gitlint ############################## Test: Prep - Setup ELL - PASS Desc: Clone, build, and install ELL ############################## Test: Build - Prep - PASS Desc: Prepare environment for build ############################## Test: Build - Configure - PASS Desc: Configure the BlueZ source tree ############################## Test: Build - Make - PASS Desc: Build the BlueZ source tree ############################## Test: Make Check - PASS Desc: Run 'make check' ############################## Test: Make Distcheck - PASS Desc: Run distcheck to check the distribution ############################## Test: Build w/ext ELL - Configure - PASS Desc: Configure BlueZ source with '--enable-external-ell' configuration ############################## Test: Build w/ext ELL - Make - PASS Desc: Build BlueZ source with '--enable-external-ell' configuration --- Regards, Linux Bluetooth
diff --git a/profiles/sap/sap-dummy.c b/profiles/sap/sap-dummy.c index 92adea384..c81eba078 100644 --- a/profiles/sap/sap-dummy.c +++ b/profiles/sap/sap-dummy.c @@ -334,7 +334,7 @@ static const GDBusMethodTable dummy_methods[] = { { GDBUS_EXPERIMENTAL_METHOD("DisconnectImmediate", NULL, NULL, disconnect_immediate) }, { GDBUS_EXPERIMENTAL_METHOD("CardStatus", - GDBUS_ARGS({ "status", "" }), NULL, + GDBUS_ARGS({ "status", "u" }), NULL, card_status) }, { } };
This brings the declaration of the status argument in the D-Bus method table in line with how card_status reads its first and only argument. Signed-off-by: Frederik Carlier <frederik.carlier@quamotion.mobi> --- profiles/sap/sap-dummy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)