diff options
| author | Michael Brown | 2006-05-29 10:25:31 +0200 |
|---|---|---|
| committer | Michael Brown | 2006-05-29 10:25:31 +0200 |
| commit | 654133889709631cb7aa9390134cada1b7067c86 (patch) | |
| tree | 1c56c6f540c3d25e665294064e2e29ac09c20a1c /src/drivers | |
| parent | Initial AoE implementation. Limitations are: (diff) | |
| download | ipxe-654133889709631cb7aa9390134cada1b7067c86.tar.gz ipxe-654133889709631cb7aa9390134cada1b7067c86.tar.xz ipxe-654133889709631cb7aa9390134cada1b7067c86.zip | |
Handle multi-sector reads by splitting them into subcommands.
Diffstat (limited to 'src/drivers')
| -rw-r--r-- | src/drivers/ata/aoedev.c | 2 |
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 ); } /** |
