diff --git a/sys/dev/isci/scil/intel_ata.h b/sys/dev/isci/scil/intel_ata.h index b2d43997763..86f584b35d6 100644 --- a/sys/dev/isci/scil/intel_ata.h +++ b/sys/dev/isci/scil/intel_ata.h @@ -301,13 +301,13 @@ /*@}*/ /** - * @name ATA_WRITE_UNCORRECTIABLE feature field values + * @name ATA_WRITE_UNCORRECTABLE feature field values * * These constants define the Write Uncorrectable feature values * used with the SATI translation. */ /*@{*/ -#define ATA_WRITE_UNCORRECTABLE_PSUEDO 0x55 +#define ATA_WRITE_UNCORRECTABLE_PSEUDO 0x55 #define ATA_WRITE_UNCORRECTABLE_FLAGGED 0xAA /*@}*/ diff --git a/sys/dev/isci/scil/sati_write_long.c b/sys/dev/isci/scil/sati_write_long.c index 8d9e4247c5f..66642b2a10a 100644 --- a/sys/dev/isci/scil/sati_write_long.c +++ b/sys/dev/isci/scil/sati_write_long.c @@ -176,7 +176,7 @@ SATI_STATUS sati_write_long_translate_command( sati_ata_write_uncorrectable_construct( ata_io, sequence, - ATA_WRITE_UNCORRECTABLE_PSUEDO + ATA_WRITE_UNCORRECTABLE_PSEUDO ); sequence->type = SATI_SEQUENCE_WRITE_LONG; status = SATI_SUCCESS; @@ -188,7 +188,7 @@ SATI_STATUS sati_write_long_translate_command( sati_ata_write_uncorrectable_construct( ata_io, sequence, - ATA_WRITE_UNCORRECTABLE_PSUEDO + ATA_WRITE_UNCORRECTABLE_PSEUDO ); sequence->type = SATI_SEQUENCE_WRITE_LONG; status = SATI_SUCCESS;