Skip to content

Commit

Permalink
media: rockchip: rkisp1: Fix typos in comments and macro definitions
Browse files Browse the repository at this point in the history
Fix 4 typos under drivers/media/platform/rockchip/rkisp1/ found by
checkpatch, including the RKISP1_CIF_MI_{M,S}P_PINGPONG_ENABLE macro
definitions.

Signed-off-by: Peilin Ye <[email protected]>
Acked-by: Helen Koike <[email protected]>
Signed-off-by: Hans Verkuil <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
  • Loading branch information
peilin-ye authored and mchehab committed Dec 3, 2020
1 parent 7aad6a7 commit 6b94c09
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions drivers/media/platform/rockchip/rkisp1/rkisp1-capture.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ enum rkisp1_plane {
/*
* @fourcc: pixel format
* @fmt_type: helper filed for pixel format
* @uv_swap: if cb cr swaped, for yuv
* @uv_swap: if cb cr swapped, for yuv
* @write_format: defines how YCbCr self picture data is written to memory
* @output_format: defines sp output format
* @mbus: the mbus code on the src resizer pad that matches the pixel format
Expand Down Expand Up @@ -870,7 +870,7 @@ static void rkisp1_cap_stream_disable(struct rkisp1_capture *cap)
{
int ret;

/* Stream should stop in interrupt. If it dosn't, stop it by force. */
/* Stream should stop in interrupt. If it doesn't, stop it by force. */
cap->is_stopping = true;
ret = wait_event_timeout(cap->done,
!cap->is_streaming,
Expand Down
4 changes: 2 additions & 2 deletions drivers/media/platform/rockchip/rkisp1/rkisp1-regs.h
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@
#define RKISP1_CIF_MI_SP_Y_FULL_YUV2RGB BIT(8)
#define RKISP1_CIF_MI_SP_CBCR_FULL_YUV2RGB BIT(9)
#define RKISP1_CIF_MI_SP_422NONCOSITEED BIT(10)
#define RKISP1_CIF_MI_MP_PINGPONG_ENABEL BIT(11)
#define RKISP1_CIF_MI_SP_PINGPONG_ENABEL BIT(12)
#define RKISP1_CIF_MI_MP_PINGPONG_ENABLE BIT(11)
#define RKISP1_CIF_MI_SP_PINGPONG_ENABLE BIT(12)
#define RKISP1_CIF_MI_MP_AUTOUPDATE_ENABLE BIT(13)
#define RKISP1_CIF_MI_SP_AUTOUPDATE_ENABLE BIT(14)
#define RKISP1_CIF_MI_LAST_PIXEL_SIG_ENABLE BIT(15)
Expand Down

0 comments on commit 6b94c09

Please sign in to comment.