mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-18 07:35:12 +08:00
fix typos concerning "management"
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
parent
85dd08ebf1
commit
65155b3708
@ -1013,7 +1013,7 @@ int vmw_gmr_id_alloc(struct vmw_private *dev_priv, uint32_t *p_id)
|
||||
}
|
||||
|
||||
/*
|
||||
* Stream managment
|
||||
* Stream management
|
||||
*/
|
||||
|
||||
static void vmw_stream_destroy(struct vmw_resource *res)
|
||||
|
@ -1297,7 +1297,7 @@ int smsclient_sendrequest(struct smscore_client_t *client,
|
||||
EXPORT_SYMBOL_GPL(smsclient_sendrequest);
|
||||
|
||||
|
||||
/* old GPIO managments implementation */
|
||||
/* old GPIO managements implementation */
|
||||
int smscore_configure_gpio(struct smscore_device_t *coredev, u32 pin,
|
||||
struct smscore_config_gpio *pinconfig)
|
||||
{
|
||||
|
@ -52,7 +52,7 @@
|
||||
*/
|
||||
#define MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK (1 << 29) /* bit 29 */
|
||||
|
||||
/********* Power managment (WOL) **********/
|
||||
/********* Power management (WOL) **********/
|
||||
#define PCICFG_PM_CONTROL_OFFSET 0x44
|
||||
#define PCICFG_PM_CONTROL_MASK 0x108 /* bits 3 & 8 */
|
||||
|
||||
|
@ -2452,7 +2452,7 @@ module_exit(fcoe_exit);
|
||||
* @fp: response frame, or error encoded in a pointer (timeout)
|
||||
* @arg: pointer the the fcoe_ctlr structure
|
||||
*
|
||||
* This handles MAC address managment for FCoE, then passes control on to
|
||||
* This handles MAC address management for FCoE, then passes control on to
|
||||
* the libfc FLOGI response handler.
|
||||
*/
|
||||
static void fcoe_flogi_resp(struct fc_seq *seq, struct fc_frame *fp, void *arg)
|
||||
@ -2484,7 +2484,7 @@ done:
|
||||
* @fp: response frame, or error encoded in a pointer (timeout)
|
||||
* @arg: pointer the the fcoe_ctlr structure
|
||||
*
|
||||
* This handles MAC address managment for FCoE, then passes control on to
|
||||
* This handles MAC address management for FCoE, then passes control on to
|
||||
* the libfc LOGO response handler.
|
||||
*/
|
||||
static void fcoe_logo_resp(struct fc_seq *seq, struct fc_frame *fp, void *arg)
|
||||
|
@ -474,7 +474,7 @@ typedef void (*MPT_ADD_SGE)(void *paddr, u32 flags_length, dma_addr_t dma_addr);
|
||||
* @shost_recovery: host reset in progress
|
||||
* @ioc_reset_in_progress_lock:
|
||||
* @ioc_link_reset_in_progress: phy/hard reset in progress
|
||||
* @ignore_loginfos: ignore loginfos during task managment
|
||||
* @ignore_loginfos: ignore loginfos during task management
|
||||
* @remove_host: flag for when driver unloads, to avoid sending dev resets
|
||||
* @wait_for_port_enable_to_complete:
|
||||
* @msix_enable: flag indicating msix is enabled
|
||||
|
@ -2979,7 +2979,7 @@ _scsih_qcmd(struct scsi_cmnd *scmd, void (*done)(struct scsi_cmnd *))
|
||||
/* host recovery or link resets sent via IOCTLs */
|
||||
if (ioc->shost_recovery || ioc->ioc_link_reset_in_progress)
|
||||
return SCSI_MLQUEUE_HOST_BUSY;
|
||||
/* device busy with task managment */
|
||||
/* device busy with task management */
|
||||
else if (sas_device_priv_data->block || sas_target_priv_data->tm_busy)
|
||||
return SCSI_MLQUEUE_DEVICE_BUSY;
|
||||
/* device has been deleted */
|
||||
@ -6845,7 +6845,7 @@ _scsih_init(void)
|
||||
/* queuecommand callback hander */
|
||||
scsi_io_cb_idx = mpt2sas_base_register_callback_handler(_scsih_io_done);
|
||||
|
||||
/* task managment callback handler */
|
||||
/* task management callback handler */
|
||||
tm_cb_idx = mpt2sas_base_register_callback_handler(_scsih_tm_done);
|
||||
|
||||
/* base internal commands callback handler */
|
||||
|
@ -4152,7 +4152,7 @@ static int pm8001_chip_abort_task(struct pm8001_hba_info *pm8001_ha,
|
||||
}
|
||||
|
||||
/**
|
||||
* pm8001_chip_ssp_tm_req - built the task managment command.
|
||||
* pm8001_chip_ssp_tm_req - built the task management command.
|
||||
* @pm8001_ha: our hba card information.
|
||||
* @ccb: the ccb information.
|
||||
* @tmf: task management function.
|
||||
|
@ -1129,7 +1129,7 @@ qla24xx_build_scsi_crc_2_iocbs(srb_t *sp, struct cmd_type_crc_2 *cmd_pkt,
|
||||
cmd_pkt->fcp_cmnd_dseg_address[1] = cpu_to_le32(
|
||||
MSD(crc_ctx_dma + CRC_CONTEXT_FCPCMND_OFF));
|
||||
fcp_cmnd->task_attribute = 0;
|
||||
fcp_cmnd->task_managment = 0;
|
||||
fcp_cmnd->task_management = 0;
|
||||
|
||||
cmd_pkt->fcp_rsp_dseg_len = 0; /* Let response come in status iocb */
|
||||
|
||||
|
@ -832,7 +832,7 @@ struct fcp_cmnd {
|
||||
struct scsi_lun lun;
|
||||
uint8_t crn;
|
||||
uint8_t task_attribute;
|
||||
uint8_t task_managment;
|
||||
uint8_t task_management;
|
||||
uint8_t additional_cdb_len;
|
||||
uint8_t cdb[260]; /* 256 for CDB len and 4 for FCP_DL */
|
||||
};
|
||||
|
@ -458,7 +458,7 @@ enum {
|
||||
IDE_DFLAG_DOORLOCKING = (1 << 15),
|
||||
/* disallow DMA */
|
||||
IDE_DFLAG_NODMA = (1 << 16),
|
||||
/* powermanagment told us not to do anything, so sleep nicely */
|
||||
/* powermanagement told us not to do anything, so sleep nicely */
|
||||
IDE_DFLAG_BLOCKED = (1 << 17),
|
||||
/* sleeping & sleep field valid */
|
||||
IDE_DFLAG_SLEEPING = (1 << 18),
|
||||
|
@ -233,7 +233,7 @@ enum macvlan_mode {
|
||||
MACVLAN_MODE_BRIDGE = 4, /* talk to bridge ports directly */
|
||||
};
|
||||
|
||||
/* SR-IOV virtual function managment section */
|
||||
/* SR-IOV virtual function management section */
|
||||
|
||||
enum {
|
||||
IFLA_VF_INFO_UNSPEC,
|
||||
|
Loading…
Reference in New Issue
Block a user