media: atomisp: fix a handful of spelling mistakes
There are several spelling mistakes in various messages and literal strings. Fix these. Signed-off-by: Colin Ian King <colin.king@canonical.com> Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
d573933c80
commit
02ab76491b
|
@ -46,7 +46,7 @@ static struct ia_css_refcount_entry *refcount_find_entry(hrt_vaddress ptr,
|
|||
return NULL;
|
||||
if (!myrefcount.items) {
|
||||
ia_css_debug_dtrace(IA_CSS_DEBUG_ERROR,
|
||||
"refcount_find_entry(): Ref count not initiliazed!\n");
|
||||
"refcount_find_entry(): Ref count not initialized!\n");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
|
@ -289,12 +289,12 @@ static inline void csi_rx_be_ctrl_dump_state(
|
|||
* lut.
|
||||
*/
|
||||
for (i = 0; i < N_SHORT_PACKET_LUT_ENTRIES[ID]; i++) {
|
||||
ia_css_print("CSI RX BE STATE Controller ID %d Short packat entry %d shart packet lut id 0x%x\n",
|
||||
ia_css_print("CSI RX BE STATE Controller ID %d Short packet entry %d short packet lut id 0x%x\n",
|
||||
ID, i,
|
||||
state->short_packet_lut_entry[i]);
|
||||
}
|
||||
for (i = 0; i < N_LONG_PACKET_LUT_ENTRIES[ID]; i++) {
|
||||
ia_css_print("CSI RX BE STATE Controller ID %d Long packat entry %d Long packet lut id 0x%x\n",
|
||||
ia_css_print("CSI RX BE STATE Controller ID %d Long packet entry %d long packet lut id 0x%x\n",
|
||||
ID, i,
|
||||
state->long_packet_lut_entry[i]);
|
||||
}
|
||||
|
|
|
@ -97,9 +97,9 @@ STORAGE_CLASS_PIXELGEN_C void pixelgen_ctrl_dump_state(
|
|||
pixelgen_ctrl_state_t *state)
|
||||
{
|
||||
ia_css_print("Pixel Generator ID %d Enable 0x%x\n", ID, state->com_enable);
|
||||
ia_css_print("Pixel Generator ID %d PRBS reset vlue 0 0x%x\n", ID,
|
||||
ia_css_print("Pixel Generator ID %d PRBS reset value 0 0x%x\n", ID,
|
||||
state->prbs_rstval0);
|
||||
ia_css_print("Pixel Generator ID %d PRBS reset vlue 1 0x%x\n", ID,
|
||||
ia_css_print("Pixel Generator ID %d PRBS reset value 1 0x%x\n", ID,
|
||||
state->prbs_rstval1);
|
||||
ia_css_print("Pixel Generator ID %d SYNC SID 0x%x\n", ID, state->syng_sid);
|
||||
ia_css_print("Pixel Generator ID %d syng free run 0x%x\n", ID,
|
||||
|
|
|
@ -1324,7 +1324,7 @@ static void print_pc_histogram(void)
|
|||
sh_css_print(" pc_histogram for binary %d\n", metrics->id);
|
||||
print_pc_histo(" ISP", &metrics->isp_histogram);
|
||||
print_pc_histo(" SP", &metrics->sp_histogram);
|
||||
sh_css_print("print_pc_histogram() done for binay->id = %d, done.\n",
|
||||
sh_css_print("print_pc_histogram() done for binary->id = %d, done.\n",
|
||||
metrics->id);
|
||||
}
|
||||
|
||||
|
@ -5331,7 +5331,7 @@ static enum ia_css_err sh_css_pipe_configure_output(
|
|||
{
|
||||
enum ia_css_err err = IA_CSS_SUCCESS;
|
||||
|
||||
IA_CSS_ENTER_PRIVATE("pipe = %p, width = %d, height = %d, paddaed width = %d, format = %d, idx = %d",
|
||||
IA_CSS_ENTER_PRIVATE("pipe = %p, width = %d, height = %d, padded width = %d, format = %d, idx = %d",
|
||||
pipe, width, height, padded_width, format, idx);
|
||||
if (!pipe) {
|
||||
IA_CSS_LEAVE_ERR_PRIVATE(IA_CSS_ERR_INVALID_ARGUMENTS);
|
||||
|
@ -10693,7 +10693,7 @@ ia_css_unlock_raw_frame(struct ia_css_stream *stream, uint32_t exp_id) {
|
|||
if (exp_id > IA_CSS_ISYS_MAX_EXPOSURE_ID ||
|
||||
exp_id < IA_CSS_ISYS_MIN_EXPOSURE_ID)
|
||||
{
|
||||
IA_CSS_ERROR("invalid expsure ID: %d\n", exp_id);
|
||||
IA_CSS_ERROR("invalid exposure ID: %d\n", exp_id);
|
||||
return IA_CSS_ERR_INVALID_ARGUMENTS;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue