From: Tamir Duberstein Date: Sat, 18 Oct 2025 19:16:23 +0000 (-0400) Subject: rust_binder: remove trailing comma X-Git-Tag: v6.19-rc1~175^2~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d9252f1be2f91c61e43e056ed1420ebdb68ca12f;p=thirdparty%2Fkernel%2Flinux.git rust_binder: remove trailing comma This prepares for a later commit in which we introduce a custom formatting macro; that macro doesn't handle trailing commas so just remove this one. Reviewed-by: Alice Ryhl Signed-off-by: Tamir Duberstein Link: https://patch.msgid.link/20251018-cstr-core-v18-2-9378a54385f8@gmail.com Signed-off-by: Miguel Ojeda --- diff --git a/drivers/android/binder/process.rs b/drivers/android/binder/process.rs index f13a747e784c8..d8111c990f212 100644 --- a/drivers/android/binder/process.rs +++ b/drivers/android/binder/process.rs @@ -596,7 +596,7 @@ impl Process { " ref {}: desc {} {}node {debug_id} s {strong} w {weak}", r.debug_id, r.handle, - if dead { "dead " } else { "" }, + if dead { "dead " } else { "" } ); } }