|
@@ -5605,13 +5605,13 @@ static enum ia_css_err load_video_binaries(struct ia_css_pipe *pipe)
|
|
|
mycs->num_yuv_scaler = cas_scaler_descr.num_stage;
|
|
|
mycs->yuv_scaler_binary = kzalloc(cas_scaler_descr.num_stage *
|
|
|
sizeof(struct ia_css_binary), GFP_KERNEL);
|
|
|
- if (mycs->yuv_scaler_binary == NULL) {
|
|
|
+ if (!mycs->yuv_scaler_binary) {
|
|
|
err = IA_CSS_ERR_CANNOT_ALLOCATE_MEMORY;
|
|
|
return err;
|
|
|
}
|
|
|
mycs->is_output_stage = kzalloc(cas_scaler_descr.num_stage
|
|
|
* sizeof(bool), GFP_KERNEL);
|
|
|
- if (mycs->is_output_stage == NULL) {
|
|
|
+ if (!mycs->is_output_stage) {
|
|
|
err = IA_CSS_ERR_CANNOT_ALLOCATE_MEMORY;
|
|
|
return err;
|
|
|
}
|
|
@@ -6256,14 +6256,14 @@ static enum ia_css_err load_primary_binaries(
|
|
|
mycs->num_yuv_scaler = cas_scaler_descr.num_stage;
|
|
|
mycs->yuv_scaler_binary = kzalloc(cas_scaler_descr.num_stage *
|
|
|
sizeof(struct ia_css_binary), GFP_KERNEL);
|
|
|
- if (mycs->yuv_scaler_binary == NULL) {
|
|
|
+ if (!mycs->yuv_scaler_binary) {
|
|
|
err = IA_CSS_ERR_CANNOT_ALLOCATE_MEMORY;
|
|
|
IA_CSS_LEAVE_ERR_PRIVATE(err);
|
|
|
return err;
|
|
|
}
|
|
|
mycs->is_output_stage = kzalloc(cas_scaler_descr.num_stage *
|
|
|
sizeof(bool), GFP_KERNEL);
|
|
|
- if (mycs->is_output_stage == NULL) {
|
|
|
+ if (!mycs->is_output_stage) {
|
|
|
err = IA_CSS_ERR_CANNOT_ALLOCATE_MEMORY;
|
|
|
IA_CSS_LEAVE_ERR_PRIVATE(err);
|
|
|
return err;
|
|
@@ -6980,27 +6980,27 @@ static enum ia_css_err ia_css_pipe_create_cas_scaler_desc_single_output(
|
|
|
}
|
|
|
|
|
|
descr->in_info = kmalloc(descr->num_stage * sizeof(struct ia_css_frame_info), GFP_KERNEL);
|
|
|
- if (descr->in_info == NULL) {
|
|
|
+ if (!descr->in_info) {
|
|
|
err = IA_CSS_ERR_CANNOT_ALLOCATE_MEMORY;
|
|
|
goto ERR;
|
|
|
}
|
|
|
descr->internal_out_info = kmalloc(descr->num_stage * sizeof(struct ia_css_frame_info), GFP_KERNEL);
|
|
|
- if (descr->internal_out_info == NULL) {
|
|
|
+ if (!descr->internal_out_info) {
|
|
|
err = IA_CSS_ERR_CANNOT_ALLOCATE_MEMORY;
|
|
|
goto ERR;
|
|
|
}
|
|
|
descr->out_info = kmalloc(descr->num_stage * sizeof(struct ia_css_frame_info), GFP_KERNEL);
|
|
|
- if (descr->out_info == NULL) {
|
|
|
+ if (!descr->out_info) {
|
|
|
err = IA_CSS_ERR_CANNOT_ALLOCATE_MEMORY;
|
|
|
goto ERR;
|
|
|
}
|
|
|
descr->vf_info = kmalloc(descr->num_stage * sizeof(struct ia_css_frame_info), GFP_KERNEL);
|
|
|
- if (descr->vf_info == NULL) {
|
|
|
+ if (!descr->vf_info) {
|
|
|
err = IA_CSS_ERR_CANNOT_ALLOCATE_MEMORY;
|
|
|
goto ERR;
|
|
|
}
|
|
|
descr->is_output_stage = kmalloc(descr->num_stage * sizeof(bool), GFP_KERNEL);
|
|
|
- if (descr->is_output_stage == NULL) {
|
|
|
+ if (!descr->is_output_stage) {
|
|
|
err = IA_CSS_ERR_CANNOT_ALLOCATE_MEMORY;
|
|
|
goto ERR;
|
|
|
}
|
|
@@ -7116,22 +7116,22 @@ static enum ia_css_err ia_css_pipe_create_cas_scaler_desc(struct ia_css_pipe *pi
|
|
|
descr->num_stage = num_stages;
|
|
|
|
|
|
descr->in_info = kmalloc(descr->num_stage * sizeof(struct ia_css_frame_info), GFP_KERNEL);
|
|
|
- if (descr->in_info == NULL) {
|
|
|
+ if (!descr->in_info) {
|
|
|
err = IA_CSS_ERR_CANNOT_ALLOCATE_MEMORY;
|
|
|
goto ERR;
|
|
|
}
|
|
|
descr->internal_out_info = kmalloc(descr->num_stage * sizeof(struct ia_css_frame_info), GFP_KERNEL);
|
|
|
- if (descr->internal_out_info == NULL) {
|
|
|
+ if (!descr->internal_out_info) {
|
|
|
err = IA_CSS_ERR_CANNOT_ALLOCATE_MEMORY;
|
|
|
goto ERR;
|
|
|
}
|
|
|
descr->out_info = kmalloc(descr->num_stage * sizeof(struct ia_css_frame_info), GFP_KERNEL);
|
|
|
- if (descr->out_info == NULL) {
|
|
|
+ if (!descr->out_info) {
|
|
|
err = IA_CSS_ERR_CANNOT_ALLOCATE_MEMORY;
|
|
|
goto ERR;
|
|
|
}
|
|
|
descr->vf_info = kmalloc(descr->num_stage * sizeof(struct ia_css_frame_info), GFP_KERNEL);
|
|
|
- if (descr->vf_info == NULL) {
|
|
|
+ if (!descr->vf_info) {
|
|
|
err = IA_CSS_ERR_CANNOT_ALLOCATE_MEMORY;
|
|
|
goto ERR;
|
|
|
}
|
|
@@ -7274,13 +7274,13 @@ load_yuvpp_binaries(struct ia_css_pipe *pipe)
|
|
|
mycs->num_yuv_scaler = cas_scaler_descr.num_stage;
|
|
|
mycs->yuv_scaler_binary = kzalloc(cas_scaler_descr.num_stage *
|
|
|
sizeof(struct ia_css_binary), GFP_KERNEL);
|
|
|
- if (mycs->yuv_scaler_binary == NULL) {
|
|
|
+ if (!mycs->yuv_scaler_binary) {
|
|
|
err = IA_CSS_ERR_CANNOT_ALLOCATE_MEMORY;
|
|
|
goto ERR;
|
|
|
}
|
|
|
mycs->is_output_stage = kzalloc(cas_scaler_descr.num_stage *
|
|
|
sizeof(bool), GFP_KERNEL);
|
|
|
- if (mycs->is_output_stage == NULL) {
|
|
|
+ if (!mycs->is_output_stage) {
|
|
|
err = IA_CSS_ERR_CANNOT_ALLOCATE_MEMORY;
|
|
|
goto ERR;
|
|
|
}
|
|
@@ -7381,7 +7381,7 @@ load_yuvpp_binaries(struct ia_css_pipe *pipe)
|
|
|
}
|
|
|
mycs->vf_pp_binary = kzalloc(mycs->num_vf_pp * sizeof(struct ia_css_binary),
|
|
|
GFP_KERNEL);
|
|
|
- if (mycs->vf_pp_binary == NULL) {
|
|
|
+ if (!mycs->vf_pp_binary) {
|
|
|
err = IA_CSS_ERR_CANNOT_ALLOCATE_MEMORY;
|
|
|
goto ERR;
|
|
|
}
|
|
@@ -9443,7 +9443,7 @@ ia_css_stream_create(const struct ia_css_stream_config *stream_config,
|
|
|
|
|
|
/* allocate the stream instance */
|
|
|
curr_stream = kmalloc(sizeof(struct ia_css_stream), GFP_KERNEL);
|
|
|
- if (curr_stream == NULL) {
|
|
|
+ if (!curr_stream) {
|
|
|
err = IA_CSS_ERR_CANNOT_ALLOCATE_MEMORY;
|
|
|
IA_CSS_LEAVE_ERR(err);
|
|
|
return err;
|
|
@@ -9455,7 +9455,7 @@ ia_css_stream_create(const struct ia_css_stream_config *stream_config,
|
|
|
/* allocate pipes */
|
|
|
curr_stream->num_pipes = num_pipes;
|
|
|
curr_stream->pipes = kzalloc(num_pipes * sizeof(struct ia_css_pipe *), GFP_KERNEL);
|
|
|
- if (curr_stream->pipes == NULL) {
|
|
|
+ if (!curr_stream->pipes) {
|
|
|
curr_stream->num_pipes = 0;
|
|
|
kfree(curr_stream);
|
|
|
curr_stream = NULL;
|