isci(4): Fix common typos in source code comments

- s/assinged/assigned/

MFC after:	3 days
This commit is contained in:
Gordon Bergling 2022-11-01 08:34:11 +01:00
parent 34fcce0087
commit 816d5c1e98
4 changed files with 6 additions and 6 deletions

View File

@ -3515,7 +3515,7 @@ SCIC_SDS_REQUEST_T *scic_sds_controller_get_io_request_from_tag(
* the set of free remote node ids
* @param[in] the_devce This is the device object which is requesting the a
* remote node id
* @param[out] node_id This is the remote node id that is assinged to the
* @param[out] node_id This is the remote node id that is assigned to the
* device if one is available
*
* @return SCI_STATUS

View File

@ -314,7 +314,7 @@ SCI_STATUS scic_sds_port_set_phy(
{
// Check to see if we can add this phy to a port
// that means that the phy is not part of a port and that the port does
// not already have a phy assinged to the phy index.
// not already have a phy assigned to the phy index.
if (
(port->phy_table[phy->phy_index] == SCI_INVALID_HANDLE)
&& (scic_sds_phy_get_port(phy) == SCI_INVALID_HANDLE)
@ -335,7 +335,7 @@ SCI_STATUS scic_sds_port_set_phy(
/**
* This method will clear the phy assigned to this port. This method fails
* if this phy is not currently assinged to this port.
* if this phy is not currently assigned to this port.
*
* @param[in, out] port The port from which the phy is being cleared.
* @param[in, out] phy The phy being cleared from the port.

View File

@ -346,7 +346,7 @@ SCI_STATUS scic_sds_mpc_agent_validate_phy_configuration(
if (phy_mask != 0)
{
// Make sure that one or more of the phys were not already assinged to
// Make sure that one or more of the phys were not already assigned to
// a different port.
if ((phy_mask & ~assigned_phy_mask) == 0)
{

View File

@ -232,14 +232,14 @@ typedef struct SCIC_SDS_REMOTE_DEVICE
SCI_SAS_ADDRESS_T device_address;
/**
* This filed is assinged the value of TRUE if the device is directly attached
* This filed is assigned the value of TRUE if the device is directly attached
* to the port.
*/
BOOL is_direct_attached;
#if !defined(DISABLE_ATAPI)
/**
* This filed is assinged the value of TRUE if the device is an ATAPI device.
* This filed is assigned the value of TRUE if the device is an ATAPI device.
*/
BOOL is_atapi;
#endif