rog-platform: change current_value() to &mut

This commit is contained in:
Luke D. Jones
2024-09-07 17:05:33 +12:00
parent c5c46738ee
commit e866b4eeb1
3 changed files with 10 additions and 10 deletions

View File

@@ -2,7 +2,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2024-08-30 23:16+0000\n"
"POT-Creation-Date: 2024-09-07 05:05+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View File

@@ -56,8 +56,8 @@ impl Attribute {
&self.help
}
pub fn current_value(&self) -> &AttrValue {
&self.current_value
pub fn current_value(&mut self) -> &mut AttrValue {
&mut self.current_value
}
pub fn default_value(&self) -> &AttrValue {
@@ -270,10 +270,10 @@ mod tests {
#[test]
fn test_boot_sound() {
let attrs = FirmwareAttributes::new();
let mut attrs = FirmwareAttributes::new();
let attr = attrs
.attributes()
.iter()
.attributes_mut()
.iter_mut()
.find(|a| a.name() == "boot_sound")
.unwrap();

View File

@@ -17,7 +17,7 @@ pub struct HidRaw {
syspath: PathBuf,
/// The product ID. The vendor ID is not kept
prod_id: String,
device_bcd: u32,
_device_bcd: u32,
/// Retaining a handle to the file for the duration of `HidRaw`
file: RefCell<File>,
}
@@ -53,7 +53,7 @@ impl HidRaw {
devfs_path: dev_node.to_owned(),
prod_id: id_product.to_string(),
syspath: endpoint.syspath().into(),
device_bcd: usb_device
_device_bcd: usb_device
.attribute_value("bcdDevice")
.unwrap_or_default()
.to_string_lossy()
@@ -77,7 +77,7 @@ impl HidRaw {
devfs_path: dev_node.to_owned(),
prod_id: id_product.to_string(),
syspath: endpoint.syspath().into(),
device_bcd: endpoint
_device_bcd: endpoint
.attribute_value("bcdDevice")
.unwrap_or_default()
.to_string_lossy()
@@ -107,7 +107,7 @@ impl HidRaw {
devfs_path: dev_node.to_owned(),
prod_id: id_product.to_string_lossy().into(),
syspath: device.syspath().into(),
device_bcd: device
_device_bcd: device
.attribute_value("bcdDevice")
.unwrap_or_default()
.to_string_lossy()