mirror of
https://github.com/torvalds/linux.git
synced 2024-12-06 02:52:22 +00:00
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: Kimberly Brown <kimbrownkd@gmail.com> Reviewed-by: Vaishali Thakkar <vthakkar@vaishalithakkar.in> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
02e6b5ebed
commit
bfff520b54
@ -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;
|
||||
|
@ -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,
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user