diff options
author | André Almeida <andrealmeid@collabora.com> | 2019-06-13 11:06:13 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2019-06-21 17:06:59 -0400 |
commit | 9aa36e61dc6bf11d8ff46d6f177fb2e3a8fc5e91 (patch) | |
tree | 17c484c7b34e56cf4553f2d7027e6efc9302d9ac /drivers/media/platform/vimc | |
parent | 40208924b988888f786850fae42fb5ca880fab80 (diff) |
media: vimc: debayer: Fix typos
Fix typo on "tranforming". Add a line break so it keeps under 80 columns.
Fix typo on "[it] need".
Signed-off-by: André Almeida <andrealmeid@collabora.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'drivers/media/platform/vimc')
-rw-r--r-- | drivers/media/platform/vimc/vimc-debayer.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/media/platform/vimc/vimc-debayer.c b/drivers/media/platform/vimc/vimc-debayer.c index 310c0d0eefa2..00598fbf3cba 100644 --- a/drivers/media/platform/vimc/vimc-debayer.c +++ b/drivers/media/platform/vimc/vimc-debayer.c | |||
@@ -16,14 +16,16 @@ | |||
16 | #include "vimc-common.h" | 16 | #include "vimc-common.h" |
17 | 17 | ||
18 | #define VIMC_DEB_DRV_NAME "vimc-debayer" | 18 | #define VIMC_DEB_DRV_NAME "vimc-debayer" |
19 | /* This module only supports tranforming a bayer format to V4L2_PIX_FMT_RGB24 */ | 19 | /* This module only supports transforming a bayer format |
20 | * to V4L2_PIX_FMT_RGB24 | ||
21 | */ | ||
20 | #define VIMC_DEB_SRC_PIXFMT V4L2_PIX_FMT_RGB24 | 22 | #define VIMC_DEB_SRC_PIXFMT V4L2_PIX_FMT_RGB24 |
21 | #define VIMC_DEB_SRC_MBUS_FMT_DEFAULT MEDIA_BUS_FMT_RGB888_1X24 | 23 | #define VIMC_DEB_SRC_MBUS_FMT_DEFAULT MEDIA_BUS_FMT_RGB888_1X24 |
22 | 24 | ||
23 | static unsigned int deb_mean_win_size = 3; | 25 | static unsigned int deb_mean_win_size = 3; |
24 | module_param(deb_mean_win_size, uint, 0000); | 26 | module_param(deb_mean_win_size, uint, 0000); |
25 | MODULE_PARM_DESC(deb_mean_win_size, " the window size to calculate the mean.\n" | 27 | MODULE_PARM_DESC(deb_mean_win_size, " the window size to calculate the mean.\n" |
26 | "NOTE: the window size need to be an odd number, as the main pixel " | 28 | "NOTE: the window size needs to be an odd number, as the main pixel " |
27 | "stays in the center of the window, otherwise the next odd number " | 29 | "stays in the center of the window, otherwise the next odd number " |
28 | "is considered"); | 30 | "is considered"); |
29 | 31 | ||