diff --git a/core/embed/rust/src/ui/layout_bolt/ui_firmware.rs b/core/embed/rust/src/ui/layout_bolt/ui_firmware.rs index 376e4633b8..3c7185a45e 100644 --- a/core/embed/rust/src/ui/layout_bolt/ui_firmware.rs +++ b/core/embed/rust/src/ui/layout_bolt/ui_firmware.rs @@ -875,12 +875,12 @@ impl FirmwareUI for UIBolt { } fn show_pairing_device_name( - device_name: TString<'static>, + _device_name: TString<'static>, ) -> Result { Err::, Error>(Error::ValueError(c"show_pairing_device_name not supported")) } - fn show_pairing_code(code: TString<'static>) -> Result { + fn show_pairing_code(_code: TString<'static>) -> Result { Err::, Error>(Error::ValueError(c"show_pairing_code not supported")) } diff --git a/core/embed/rust/src/ui/layout_caesar/ui_firmware.rs b/core/embed/rust/src/ui/layout_caesar/ui_firmware.rs index 38f21e8270..40794e0e11 100644 --- a/core/embed/rust/src/ui/layout_caesar/ui_firmware.rs +++ b/core/embed/rust/src/ui/layout_caesar/ui_firmware.rs @@ -1041,12 +1041,12 @@ impl FirmwareUI for UICaesar { } fn show_pairing_device_name( - device_name: TString<'static>, + _device_name: TString<'static>, ) -> Result { Err::, Error>(Error::ValueError(c"show_pairing_device_name not supported")) } - fn show_pairing_code(code: TString<'static>) -> Result { + fn show_pairing_code(_code: TString<'static>) -> Result { Err::, Error>(Error::ValueError(c"show_pairing_code not supported")) } diff --git a/core/embed/rust/src/ui/layout_delizia/ui_firmware.rs b/core/embed/rust/src/ui/layout_delizia/ui_firmware.rs index d243707c56..27a4d8d5ae 100644 --- a/core/embed/rust/src/ui/layout_delizia/ui_firmware.rs +++ b/core/embed/rust/src/ui/layout_delizia/ui_firmware.rs @@ -893,12 +893,12 @@ impl FirmwareUI for UIDelizia { } fn show_pairing_device_name( - device_name: TString<'static>, + _device_name: TString<'static>, ) -> Result { Err::, Error>(Error::ValueError(c"show_pairing_device_name not supported")) } - fn show_pairing_code(code: TString<'static>) -> Result { + fn show_pairing_code(_code: TString<'static>) -> Result { Err::, Error>(Error::ValueError(c"show_pairing_code not supported")) }