treewide: Fix typo in printk and comments
Fix typo in printk and comments within various drivers. Signed-off-by: Masanari Iida <standby24x7@gmail.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
parent
372c1d6d64
commit
b23f7a09f9
|
@ -613,7 +613,7 @@ static int handle_exit(struct kvm_vcpu *vcpu, struct kvm_run *run,
|
||||||
|
|
||||||
if (hsr_ec >= ARRAY_SIZE(arm_exit_handlers)
|
if (hsr_ec >= ARRAY_SIZE(arm_exit_handlers)
|
||||||
|| !arm_exit_handlers[hsr_ec]) {
|
|| !arm_exit_handlers[hsr_ec]) {
|
||||||
kvm_err("Unkown exception class: %#08lx, "
|
kvm_err("Unknown exception class: %#08lx, "
|
||||||
"hsr: %#08x\n", hsr_ec,
|
"hsr: %#08x\n", hsr_ec,
|
||||||
(unsigned int)vcpu->arch.hsr);
|
(unsigned int)vcpu->arch.hsr);
|
||||||
BUG();
|
BUG();
|
||||||
|
|
|
@ -591,7 +591,7 @@ static int bnx2x_dcbx_read_shmem_remote_mib(struct bnx2x *bp)
|
||||||
DCBX_READ_REMOTE_MIB);
|
DCBX_READ_REMOTE_MIB);
|
||||||
|
|
||||||
if (rc) {
|
if (rc) {
|
||||||
BNX2X_ERR("Faild to read remote mib from FW\n");
|
BNX2X_ERR("Failed to read remote mib from FW\n");
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -619,7 +619,7 @@ static int bnx2x_dcbx_read_shmem_neg_results(struct bnx2x *bp)
|
||||||
DCBX_READ_LOCAL_MIB);
|
DCBX_READ_LOCAL_MIB);
|
||||||
|
|
||||||
if (rc) {
|
if (rc) {
|
||||||
BNX2X_ERR("Faild to read local mib from FW\n");
|
BNX2X_ERR("Failed to read local mib from FW\n");
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -59,7 +59,7 @@ static const char *rproc_crash_to_string(enum rproc_crash_type type)
|
||||||
{
|
{
|
||||||
if (type < ARRAY_SIZE(rproc_crash_names))
|
if (type < ARRAY_SIZE(rproc_crash_names))
|
||||||
return rproc_crash_names[type];
|
return rproc_crash_names[type];
|
||||||
return "unkown";
|
return "unknown";
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -369,7 +369,7 @@ beiscsi_set_vlan_tag(struct Scsi_Host *shost,
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_CONFIG,
|
beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_CONFIG,
|
||||||
"BS_%d : Unkown Param Type : %d\n",
|
"BS_%d : Unknown Param Type : %d\n",
|
||||||
iface_param->param);
|
iface_param->param);
|
||||||
return -ENOSYS;
|
return -ENOSYS;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1292,7 +1292,7 @@ beiscsi_adap_family_disp(struct device *dev, struct device_attribute *attr,
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return snprintf(buf, PAGE_SIZE,
|
return snprintf(buf, PAGE_SIZE,
|
||||||
"Unkown Adapter Family: 0x%x\n", dev_id);
|
"Unknown Adapter Family: 0x%x\n", dev_id);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -580,8 +580,8 @@ struct bnx2i_5771x_dbell {
|
||||||
* @sq_mem_size: SQ size
|
* @sq_mem_size: SQ size
|
||||||
* @sq_prod_qe: SQ producer entry pointer
|
* @sq_prod_qe: SQ producer entry pointer
|
||||||
* @sq_cons_qe: SQ consumer entry pointer
|
* @sq_cons_qe: SQ consumer entry pointer
|
||||||
* @sq_first_qe: virtaul address of first entry in SQ
|
* @sq_first_qe: virtual address of first entry in SQ
|
||||||
* @sq_last_qe: virtaul address of last entry in SQ
|
* @sq_last_qe: virtual address of last entry in SQ
|
||||||
* @sq_prod_idx: SQ producer index
|
* @sq_prod_idx: SQ producer index
|
||||||
* @sq_cons_idx: SQ consumer index
|
* @sq_cons_idx: SQ consumer index
|
||||||
* @sqe_left: number sq entry left
|
* @sqe_left: number sq entry left
|
||||||
|
@ -593,8 +593,8 @@ struct bnx2i_5771x_dbell {
|
||||||
* @cq_mem_size: CQ size
|
* @cq_mem_size: CQ size
|
||||||
* @cq_prod_qe: CQ producer entry pointer
|
* @cq_prod_qe: CQ producer entry pointer
|
||||||
* @cq_cons_qe: CQ consumer entry pointer
|
* @cq_cons_qe: CQ consumer entry pointer
|
||||||
* @cq_first_qe: virtaul address of first entry in CQ
|
* @cq_first_qe: virtual address of first entry in CQ
|
||||||
* @cq_last_qe: virtaul address of last entry in CQ
|
* @cq_last_qe: virtual address of last entry in CQ
|
||||||
* @cq_prod_idx: CQ producer index
|
* @cq_prod_idx: CQ producer index
|
||||||
* @cq_cons_idx: CQ consumer index
|
* @cq_cons_idx: CQ consumer index
|
||||||
* @cqe_left: number cq entry left
|
* @cqe_left: number cq entry left
|
||||||
|
@ -608,8 +608,8 @@ struct bnx2i_5771x_dbell {
|
||||||
* @rq_mem_size: RQ size
|
* @rq_mem_size: RQ size
|
||||||
* @rq_prod_qe: RQ producer entry pointer
|
* @rq_prod_qe: RQ producer entry pointer
|
||||||
* @rq_cons_qe: RQ consumer entry pointer
|
* @rq_cons_qe: RQ consumer entry pointer
|
||||||
* @rq_first_qe: virtaul address of first entry in RQ
|
* @rq_first_qe: virtual address of first entry in RQ
|
||||||
* @rq_last_qe: virtaul address of last entry in RQ
|
* @rq_last_qe: virtual address of last entry in RQ
|
||||||
* @rq_prod_idx: RQ producer index
|
* @rq_prod_idx: RQ producer index
|
||||||
* @rq_cons_idx: RQ consumer index
|
* @rq_cons_idx: RQ consumer index
|
||||||
* @rqe_left: number rq entry left
|
* @rqe_left: number rq entry left
|
||||||
|
|
|
@ -182,7 +182,7 @@ csio_mb_reset(struct csio_hw *hw, struct csio_mb *mbp, uint32_t tmo,
|
||||||
* @tmo: Command timeout.
|
* @tmo: Command timeout.
|
||||||
* @pf: PF number.
|
* @pf: PF number.
|
||||||
* @vf: VF number.
|
* @vf: VF number.
|
||||||
* @nparams: Number of paramters
|
* @nparams: Number of parameters
|
||||||
* @params: Parameter mnemonic array.
|
* @params: Parameter mnemonic array.
|
||||||
* @val: Parameter value array.
|
* @val: Parameter value array.
|
||||||
* @wr: Write/Read PARAMS.
|
* @wr: Write/Read PARAMS.
|
||||||
|
@ -721,7 +721,7 @@ csio_mb_iq_free(struct csio_hw *hw, struct csio_mb *mbp, void *priv,
|
||||||
* @mbp: Mailbox structure to initialize
|
* @mbp: Mailbox structure to initialize
|
||||||
* @priv: Private data
|
* @priv: Private data
|
||||||
* @mb_tmo: Mailbox time-out period (in ms).
|
* @mb_tmo: Mailbox time-out period (in ms).
|
||||||
* @eq_ofld_params: (Offload) Egress queue paramters.
|
* @eq_ofld_params: (Offload) Egress queue parameters.
|
||||||
* @cbfn: The call-back function
|
* @cbfn: The call-back function
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
|
@ -752,7 +752,7 @@ csio_mb_eq_ofld_alloc(struct csio_hw *hw, struct csio_mb *mbp, void *priv,
|
||||||
* @priv: Private data
|
* @priv: Private data
|
||||||
* @mb_tmo: Mailbox time-out period (in ms).
|
* @mb_tmo: Mailbox time-out period (in ms).
|
||||||
* @cascaded_req: TRUE - if this request is cascased with Eq-alloc request.
|
* @cascaded_req: TRUE - if this request is cascased with Eq-alloc request.
|
||||||
* @eq_ofld_params: (Offload) Egress queue paramters.
|
* @eq_ofld_params: (Offload) Egress queue parameters.
|
||||||
* @cbfn: The call-back function
|
* @cbfn: The call-back function
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
|
@ -817,7 +817,7 @@ csio_mb_eq_ofld_write(struct csio_hw *hw, struct csio_mb *mbp, void *priv,
|
||||||
* @mbp: Mailbox structure to initialize
|
* @mbp: Mailbox structure to initialize
|
||||||
* @priv: Private data.
|
* @priv: Private data.
|
||||||
* @mb_tmo: Mailbox time-out period (in ms).
|
* @mb_tmo: Mailbox time-out period (in ms).
|
||||||
* @eq_ofld_params: (Offload) Egress queue paramters.
|
* @eq_ofld_params: (Offload) Egress queue parameters.
|
||||||
* @cbfn: The call-back function
|
* @cbfn: The call-back function
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
|
@ -840,7 +840,7 @@ csio_mb_eq_ofld_alloc_write(struct csio_hw *hw, struct csio_mb *mbp,
|
||||||
* @hw: The HW structure.
|
* @hw: The HW structure.
|
||||||
* @mbp: Mailbox structure to initialize.
|
* @mbp: Mailbox structure to initialize.
|
||||||
* @retval: Firmware return value.
|
* @retval: Firmware return value.
|
||||||
* @eq_ofld_params: (Offload) Egress queue paramters.
|
* @eq_ofld_params: (Offload) Egress queue parameters.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
|
@ -870,7 +870,7 @@ csio_mb_eq_ofld_alloc_write_rsp(struct csio_hw *hw,
|
||||||
* @mbp: Mailbox structure to initialize
|
* @mbp: Mailbox structure to initialize
|
||||||
* @priv: Private data area.
|
* @priv: Private data area.
|
||||||
* @mb_tmo: Mailbox time-out period (in ms).
|
* @mb_tmo: Mailbox time-out period (in ms).
|
||||||
* @eq_ofld_params: (Offload) Egress queue paramters, that is to be freed.
|
* @eq_ofld_params: (Offload) Egress queue parameters, that is to be freed.
|
||||||
* @cbfn: The call-back function
|
* @cbfn: The call-back function
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
|
|
|
@ -867,7 +867,7 @@ int snd_pcm_format_physical_width(snd_pcm_format_t format); /* in bits */
|
||||||
ssize_t snd_pcm_format_size(snd_pcm_format_t format, size_t samples);
|
ssize_t snd_pcm_format_size(snd_pcm_format_t format, size_t samples);
|
||||||
const unsigned char *snd_pcm_format_silence_64(snd_pcm_format_t format);
|
const unsigned char *snd_pcm_format_silence_64(snd_pcm_format_t format);
|
||||||
int snd_pcm_format_set_silence(snd_pcm_format_t format, void *buf, unsigned int frames);
|
int snd_pcm_format_set_silence(snd_pcm_format_t format, void *buf, unsigned int frames);
|
||||||
snd_pcm_format_t snd_pcm_build_linear_format(int width, int unsignd, int big_endian);
|
snd_pcm_format_t snd_pcm_build_linear_format(int width, int unsigned, int big_endian);
|
||||||
|
|
||||||
void snd_pcm_set_ops(struct snd_pcm * pcm, int direction, struct snd_pcm_ops *ops);
|
void snd_pcm_set_ops(struct snd_pcm * pcm, int direction, struct snd_pcm_ops *ops);
|
||||||
void snd_pcm_set_sync(struct snd_pcm_substream *substream);
|
void snd_pcm_set_sync(struct snd_pcm_substream *substream);
|
||||||
|
|
Loading…
Reference in New Issue