diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-11-09 13:15:28 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-11-09 13:15:28 +0000 |
commit | d6edfe35c8a9490407e4a5e34f8e5108c6a260a3 (patch) | |
tree | 50a869497c7eab5d031af4a74ab3192dac5c9d5b /LUFA/Drivers/USB/Class/Common | |
parent | c647c2763980b374da1c4314c752295d72228d4c (diff) | |
download | lufa-d6edfe35c8a9490407e4a5e34f8e5108c6a260a3.tar.gz lufa-d6edfe35c8a9490407e4a5e34f8e5108c6a260a3.tar.bz2 lufa-d6edfe35c8a9490407e4a5e34f8e5108c6a260a3.zip |
Spell check all source code variables, comments and strings.
Diffstat (limited to 'LUFA/Drivers/USB/Class/Common')
-rw-r--r-- | LUFA/Drivers/USB/Class/Common/Audio.h | 4 | ||||
-rw-r--r-- | LUFA/Drivers/USB/Class/Common/MassStorage.h | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/LUFA/Drivers/USB/Class/Common/Audio.h b/LUFA/Drivers/USB/Class/Common/Audio.h index 2508daadf..553c778e2 100644 --- a/LUFA/Drivers/USB/Class/Common/Audio.h +++ b/LUFA/Drivers/USB/Class/Common/Audio.h @@ -147,7 +147,7 @@ /** Supported feature mask for an Audio class feature unit descriptor. See the Audio class specification for more details. */
#define FEATURE_BASS_BOOST (1 << 8)
- +
/** Supported feature mask for an Audio class feature unit descriptor. See the Audio class specification for more details. */
#define FEATURE_BASS_LOUDNESS (1 << 9)
@@ -346,7 +346,7 @@ USB_Descriptor_Endpoint_t Endpoint; /**< Standard endpoint descriptor describing the audio endpoint */
uint8_t Refresh; /**< Always set to zero */
- uint8_t SyncEndpointNumber; /**< Endpoint address to send synchronisation information to, if needed (zero otherwise) */
+ uint8_t SyncEndpointNumber; /**< Endpoint address to send synchronization information to, if needed (zero otherwise) */
} USB_Audio_StreamEndpoint_Std_t;
/** Type define for an Audio class specific extended endpoint descriptor. This contains extra information
diff --git a/LUFA/Drivers/USB/Class/Common/MassStorage.h b/LUFA/Drivers/USB/Class/Common/MassStorage.h index 6f5dd8911..fe3e97734 100644 --- a/LUFA/Drivers/USB/Class/Common/MassStorage.h +++ b/LUFA/Drivers/USB/Class/Common/MassStorage.h @@ -109,7 +109,7 @@ /** SCSI Command Code for a MODE SENSE (10) command. */
#define SCSI_CMD_MODE_SENSE_10 0x5A
- /** SCSI Sense Code to indicate no error has ocurred. */
+ /** SCSI Sense Code to indicate no error has occurred. */
#define SCSI_SENSE_KEY_GOOD 0x00
/** SCSI Sense Code to indicate that the device has recovered from an error. */
@@ -121,7 +121,7 @@ /** SCSI Sense Code to indicate an error whilst accessing the medium. */
#define SCSI_SENSE_KEY_MEDIUM_ERROR 0x03
- /** SCSI Sense Code to indicate a hardware has ocurred. */
+ /** SCSI Sense Code to indicate a hardware has occurred. */
#define SCSI_SENSE_KEY_HARDWARE_ERROR 0x04
/** SCSI Sense Code to indicate that an illegal request has been issued. */
@@ -138,7 +138,7 @@ /** SCSI Sense Code to indicate an error while trying to write to a write-once medium. */
#define SCSI_SENSE_KEY_BLANK_CHECK 0x08
- /** SCSI Sense Code to indicate a vendor specific error has ocurred. */
+ /** SCSI Sense Code to indicate a vendor specific error has occurred. */
#define SCSI_SENSE_KEY_VENDOR_SPECIFIC 0x09
/** SCSI Sense Code to indicate that an EXTENDED COPY command has aborted due to an error. */
@@ -162,7 +162,7 @@ /** SCSI Additional Sense Code to indicate an invalid field was encountered while processing the issued command. */
#define SCSI_ASENSE_INVALID_FIELD_IN_CDB 0x24
- /** SCSI Additional Sense Code to indicate that an attemp to write to a protected area was made. */
+ /** SCSI Additional Sense Code to indicate that an attempt to write to a protected area was made. */
#define SCSI_ASENSE_WRITE_PROTECTED 0x27
/** SCSI Additional Sense Code to indicate an error whilst formatting the device medium. */
|