summaryrefslogtreecommitdiffstats
path: root/src/drivers/ata
diff options
context:
space:
mode:
authorMichael Brown2006-05-29 10:25:31 +0200
committerMichael Brown2006-05-29 10:25:31 +0200
commit654133889709631cb7aa9390134cada1b7067c86 (patch)
tree1c56c6f540c3d25e665294064e2e29ac09c20a1c /src/drivers/ata
parentInitial AoE implementation. Limitations are: (diff)
downloadipxe-654133889709631cb7aa9390134cada1b7067c86.tar.gz
ipxe-654133889709631cb7aa9390134cada1b7067c86.tar.xz
ipxe-654133889709631cb7aa9390134cada1b7067c86.zip
Handle multi-sector reads by splitting them into subcommands.
Diffstat (limited to 'src/drivers/ata')
-rw-r--r--src/drivers/ata/aoedev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/ata/aoedev.c b/src/drivers/ata/aoedev.c
index 8db484b7c..0350bc097 100644
--- a/src/drivers/ata/aoedev.c
+++ b/src/drivers/ata/aoedev.c
@@ -37,7 +37,7 @@ static int aoe_command ( struct ata_device *ata,
struct aoe_device *aoedev
= container_of ( ata, struct aoe_device, ata );
- return aoe_issue ( &aoedev->aoe, command );
+ return aoe_issue_split ( &aoedev->aoe, command );
}
/**