diff options
author | smh <smh@FreeBSD.org> | 2013-04-28 21:14:23 +0000 |
---|---|---|
committer | smh <smh@FreeBSD.org> | 2013-04-28 21:14:23 +0000 |
commit | a5bbb03f952598b98bdac61a8e142f9e3908108b (patch) | |
tree | 5ed8e95a5e62f12783d8960c215e5cd7cd673812 /sys/cam/ata | |
parent | 5ae05b2097f7b2b953f828e71d1d180e2504f5ab (diff) | |
download | FreeBSD-src-a5bbb03f952598b98bdac61a8e142f9e3908108b.zip FreeBSD-src-a5bbb03f952598b98bdac61a8e142f9e3908108b.tar.gz |
Correct comment typo's
Add missing comment
Reviewed by: pjd (mentor)
Approved by: pjd (mentor)
MFC after: 2 weeks
Diffstat (limited to 'sys/cam/ata')
-rw-r--r-- | sys/cam/ata/ata_da.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/cam/ata/ata_da.c b/sys/cam/ata/ata_da.c index 206a9d6..9010e1f 100644 --- a/sys/cam/ata/ata_da.c +++ b/sys/cam/ata/ata_da.c @@ -1147,7 +1147,7 @@ adaregister(struct cam_periph *periph, void *arg) snprintf(announce_buf, sizeof(announce_buf), "kern.cam.ada.%d.write_cache", periph->unit_number); TUNABLE_INT_FETCH(announce_buf, &softc->write_cache); - /* Disable queue sorting for non-rotatational media by default */ + /* Disable queue sorting for non-rotational media by default. */ if (cgd->ident_data.media_rotation_rate == 1) softc->sort_io_queue = 0; else |