Fix allocate_frames

This commit is contained in:
Jeremy Soller 2016-09-26 17:13:35 -06:00
parent dad81d3c46
commit d72609898a
3 changed files with 7 additions and 6 deletions

View file

@ -22,7 +22,6 @@ impl Ahci {
println!("{}: {:?}", i, port_type);
match port_type {
HbaPortType::SATA => {
/*
disk.port.init();
if let Some(size) = unsafe { disk.port.identify(i) } {
disk.size = size;
@ -30,8 +29,6 @@ impl Ahci {
} else {
None
}
*/
None
}
_ => None,
}