diff options
author | Ian Moffett <ian@osmora.org> | 2025-06-11 16:58:35 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-06-11 17:02:50 -0400 |
commit | b1cfd96204f9012ac212a1e3085a00c1a05136ad (patch) | |
tree | 7844a7892044500a87625833e4a8823d39da1162 /sys/dev | |
parent | d460e24db27cae6a48f548d2b92fe2f807ad0b37 (diff) |
kernel: ahci: Return length in sata_dev_rw()
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ic/ahci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ic/ahci.c b/sys/dev/ic/ahci.c index d4c10c7..7d89dd3 100644 --- a/sys/dev/ic/ahci.c +++ b/sys/dev/ic/ahci.c @@ -709,7 +709,7 @@ sata_dev_rw(dev_t dev, struct sio_txn *sio, bool write) } dynfree(buf); - return status; + return sio->len; } /* |