Skip to content

Commit cde4e51

Browse files
pinchartlHans Verkuil
authored andcommitted
media: rkisp1: Convert hex constants to lowercase
Hex constants in the media subsystem are typically in lowercase. The rkisp1 driver mostly follows that convention already, except in the register definitions. Convert all hex constants to lowercase for consistency. Signed-off-by: Laurent Pinchart <[email protected]> Reviewed-by: Sakari Ailus <[email protected]> Signed-off-by: Hans Verkuil <[email protected]>
1 parent c7e2621 commit cde4e51

File tree

2 files changed

+311
-311
lines changed

2 files changed

+311
-311
lines changed

drivers/media/platform/rockchip/rkisp1/rkisp1-params.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -812,7 +812,7 @@ static void rkisp1_hst_config_v10(struct rkisp1_params *params,
812812
weight[2], weight[3]));
813813

814814
rkisp1_write(params->rkisp1, RKISP1_CIF_ISP_HIST_WEIGHT_44_V10,
815-
weight[0] & 0x1F);
815+
weight[0] & 0x1f);
816816
}
817817

818818
static void rkisp1_hst_config_v12(struct rkisp1_params *params,

0 commit comments

Comments
 (0)