Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bfff520b authored by Kimberly Brown's avatar Kimberly Brown Committed by Greg Kroah-Hartman
Browse files

staging: media: davinci_vpfe: Fix spelling mistake in enum



Fix the spelling mistake in enumerator identifier
RESIZER_MODE_CONTINIOUS. 'CONTINIOUS' should be 'CONTINUOUS'. Issue
found by checkpatch.

Signed-off-by: default avatarKimberly Brown <kimbrownkd@gmail.com>
Reviewed-by: default avatarVaishali Thakkar <vthakkar@vaishalithakkar.in>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 02e6b5eb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -499,7 +499,7 @@ resizer_configure_in_continuous_mode(struct vpfe_resizer_device *resizer)
	configure_resizer_out_params(resizer, RSZ_A,
				     &cont_config->output1, 1, 0);
	param->rsz_en[RSZ_B] = DISABLE;
	param->oper_mode = RESIZER_MODE_CONTINIOUS;
	param->oper_mode = RESIZER_MODE_CONTINUOUS;

	if (resizer->resizer_b.output == RESIZER_OUTPUT_MEMORY) {
		struct v4l2_mbus_framefmt *outformat2;
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@
#define _DAVINCI_VPFE_DM365_RESIZER_H

enum resizer_oper_mode {
	RESIZER_MODE_CONTINIOUS = 0,
	RESIZER_MODE_CONTINUOUS = 0,
	RESIZER_MODE_ONE_SHOT = 1,
};