bindings: rust: construct chip infos by reference
authorErik Schilling <erik.schilling@linaro.org>
Wed, 27 Sep 2023 09:25:23 +0000 (11:25 +0200)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Fri, 29 Sep 2023 12:45:55 +0000 (14:45 +0200)
No need to clone the Arc for this. A simple reference is enough to get
to the underlying chip pointer.

Signed-off-by: Erik Schilling <erik.schilling@linaro.org>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
bindings/rust/libgpiod/src/chip.rs

index 81e1be6be8c4ba7702baf6240245c901401b7763..4545ddbe769c8e873f0eb27328a2c9b038c27ea7 100644 (file)
@@ -79,7 +79,7 @@ impl Chip {
 
     /// Get the chip name as represented in the kernel.
     pub fn info(&self) -> Result<Info> {
-        Info::new(self.ichip.clone())
+        Info::new(self)
     }
 
     /// Get the path used to find the chip.
@@ -239,9 +239,9 @@ pub struct Info {
 
 impl Info {
     /// Find a GPIO chip by path.
-    fn new(chip: Arc<Internal>) -> Result<Self> {
-        // SAFETY: `gpiod_chip` is guaranteed to be valid here.
-        let info = unsafe { gpiod::gpiod_chip_get_info(chip.chip) };
+    fn new(chip: &Chip) -> Result<Self> {
+        // SAFETY: `chip.ichip.chip` is guaranteed to be valid here.
+        let info = unsafe { gpiod::gpiod_chip_get_info(chip.ichip.chip) };
         if info.is_null() {
             return Err(Error::OperationFailed(
                 OperationType::ChipGetInfo,