cpacfinfo: Remove commented-out code

Reviewed-by: Finn Callies <fcallies@linux.ibm.com>
Signed-off-by: Marc Hartmayer <mhartmay@linux.ibm.com>
Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
This commit is contained in:
Marc Hartmayer
2025-10-28 15:29:17 +01:00
committed by Jan Höppner
parent b766d4a53c
commit f74b8d7d6f

View File

@@ -233,10 +233,6 @@ pub fn query(ins: &InstructionKind, fc: u8) -> Result<Param, Error> {
fn read_file_to_buf(file: &mut File, buf: &mut [u8]) -> Result<usize, Error> {
file.read(buf)
/* match file.read(buf) {
Result::Ok(bytes_read) => Ok(bytes_read),
Err(e) => Err(e),
} */
}
#[cfg(test)]