spelling fixes
acquired (aquired) contiguous (contigious) successful (succesful, succesfull) surprise (suprise) whether (weather) some other misspellings Signed-off-by: Andreas Mohr <andi@lisas.de> Signed-off-by: Adrian Bunk <bunk@stusta.de>
This commit is contained in:
committed by
Adrian Bunk
parent
f18190bd34
commit
d6e05edc59
@@ -500,7 +500,7 @@ static void NCR5380_print_phase(struct Scsi_Host *instance)
|
||||
/*
|
||||
* Function : int should_disconnect (unsigned char cmd)
|
||||
*
|
||||
* Purpose : decide weather a command would normally disconnect or
|
||||
* Purpose : decide whether a command would normally disconnect or
|
||||
* not, since if it won't disconnect we should go to sleep.
|
||||
*
|
||||
* Input : cmd - opcode of SCSI command
|
||||
|
||||
@@ -12374,7 +12374,7 @@ AscInitFromEEP(ASC_DVC_VAR *asc_dvc)
|
||||
ASC_PRINT1(
|
||||
"AscInitFromEEP: Failed to re-write EEPROM with %d errors.\n", i);
|
||||
} else {
|
||||
ASC_PRINT("AscInitFromEEP: Succesfully re-wrote EEPROM.");
|
||||
ASC_PRINT("AscInitFromEEP: Successfully re-wrote EEPROM.\n");
|
||||
}
|
||||
}
|
||||
return (warn_code);
|
||||
|
||||
@@ -3771,7 +3771,7 @@ static void request_sense(struct AdapterCtlBlk *acb, struct DeviceCtlBlk *dcb,
|
||||
* @target: The target for the new device.
|
||||
* @lun: The lun for the new device.
|
||||
*
|
||||
* Return the new device if succesfull or NULL on failure.
|
||||
* Return the new device if successful or NULL on failure.
|
||||
**/
|
||||
static struct DeviceCtlBlk *device_alloc(struct AdapterCtlBlk *acb,
|
||||
u8 target, u8 lun)
|
||||
|
||||
@@ -760,7 +760,7 @@ static int device_inquiry(int host_index, int ldn)
|
||||
while (!got_interrupt(host_index))
|
||||
barrier();
|
||||
|
||||
/*if command succesful, break */
|
||||
/*if command successful, break */
|
||||
if ((stat_result(host_index) == IM_SCB_CMD_COMPLETED) || (stat_result(host_index) == IM_SCB_CMD_COMPLETED_WITH_RETRIES))
|
||||
return 1;
|
||||
}
|
||||
@@ -885,7 +885,7 @@ static int immediate_assign(int host_index, unsigned int pun, unsigned int lun,
|
||||
while (!got_interrupt(host_index))
|
||||
barrier();
|
||||
|
||||
/*if command succesful, break */
|
||||
/*if command successful, break */
|
||||
if (stat_result(host_index) == IM_IMMEDIATE_CMD_COMPLETED)
|
||||
return 1;
|
||||
}
|
||||
@@ -921,7 +921,7 @@ static int immediate_feature(int host_index, unsigned int speed, unsigned int ti
|
||||
return 2;
|
||||
} else
|
||||
global_command_error_excuse = 0;
|
||||
/*if command succesful, break */
|
||||
/*if command successful, break */
|
||||
if (stat_result(host_index) == IM_IMMEDIATE_CMD_COMPLETED)
|
||||
return 1;
|
||||
}
|
||||
@@ -959,7 +959,7 @@ static int immediate_reset(int host_index, unsigned int ldn)
|
||||
/* did not work, finish */
|
||||
return 1;
|
||||
}
|
||||
/*if command succesful, break */
|
||||
/*if command successful, break */
|
||||
if (stat_result(host_index) == IM_IMMEDIATE_CMD_COMPLETED)
|
||||
return 1;
|
||||
}
|
||||
|
||||
@@ -6438,7 +6438,7 @@ ips_erase_bios(ips_ha_t * ha)
|
||||
/* VPP failure */
|
||||
return (1);
|
||||
|
||||
/* check for succesful flash */
|
||||
/* check for successful flash */
|
||||
if (status & 0x30)
|
||||
/* sequence error */
|
||||
return (1);
|
||||
@@ -6550,7 +6550,7 @@ ips_erase_bios_memio(ips_ha_t * ha)
|
||||
/* VPP failure */
|
||||
return (1);
|
||||
|
||||
/* check for succesful flash */
|
||||
/* check for successful flash */
|
||||
if (status & 0x30)
|
||||
/* sequence error */
|
||||
return (1);
|
||||
|
||||
@@ -2818,7 +2818,7 @@ static int st_int_ioctl(struct scsi_tape *STp, unsigned int cmd_in, unsigned lon
|
||||
(cmdstatp->sense_hdr.sense_key == NO_SENSE ||
|
||||
cmdstatp->sense_hdr.sense_key == RECOVERED_ERROR) &&
|
||||
undone == 0) {
|
||||
ioctl_result = 0; /* EOF written succesfully at EOM */
|
||||
ioctl_result = 0; /* EOF written successfully at EOM */
|
||||
if (fileno >= 0)
|
||||
fileno++;
|
||||
STps->drv_file = fileno;
|
||||
|
||||
Reference in New Issue
Block a user