From 0532e8127895b7e52b4bffa6f78686f4c96f57ae Mon Sep 17 00:00:00 2001 From: Kent Overstreet Date: Sun, 30 Nov 2025 12:01:33 -0500 Subject: [PATCH] device_scan: Don't use read_super_silent when opening manual list of devs Signed-off-by: Kent Overstreet --- src/device_scan.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/device_scan.rs b/src/device_scan.rs index 479ebd20..45c3563e 100644 --- a/src/device_scan.rs +++ b/src/device_scan.rs @@ -169,7 +169,7 @@ pub fn scan_sbs(device: &String, opts: &bch_opts) -> Result>(); let sbs = devices .iter() - .map(|path| read_super_silent(path, *opts)) + .map(|path| bch_bindgen::sb_io::read_super_opts(path.as_ref(), *opts)) .collect::>>()?; Ok(devices.iter().zip(sbs.iter())