Re: [PATCH] media: unify some sony camera sensors pattern naming
From: Luca Ceresoli <luca@lucaceresoli.net>
Date: 2018-11-27 19:02:41
Hi Bingbu, On 27/11/18 05:01, bingbu.cao@intel.com wrote:
quoted hunk ↗ jump to hunk
From: Bingbu Cao <bingbu.cao@intel.com> Some Sony camera sensors have same test pattern definitions, this patch unify the pattern naming to make it more clear to the userspace. Suggested-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Bingbu Cao <bingbu.cao@intel.com> --- drivers/media/i2c/imx258.c | 8 ++++---- drivers/media/i2c/imx319.c | 8 ++++---- drivers/media/i2c/imx355.c | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-)diff --git a/drivers/media/i2c/imx258.c b/drivers/media/i2c/imx258.c index 31a1e2294843..a8a2880c6b4e 100644 --- a/drivers/media/i2c/imx258.c +++ b/drivers/media/i2c/imx258.c@@ -504,10 +504,10 @@ struct imx258_mode { static const char * const imx258_test_pattern_menu[] = { "Disabled", - "Color Bars", - "Solid Color", - "Grey Color Bars", - "PN9" + "Solid Colour", + "Eight Vertical Colour Bars", + "Colour Bars With Fade to Grey", + "Pseudorandom Sequence (PN9)",
I had a look at imx274, it has many more values but definitely some could be unified too. However I noticed something strange in that driver: The "Horizontal Color Bars" pattern has vertical bars, side-by-side, as in ||||. "Vertical Color Bars" are one on top of the other, as in ==. Is it just me crazy, or are they swapped? Only one minor nitpick about your patch. The USA spelling "color" seems a lot more frequent in the kernel sources than the UK "colour", so it's probably better to be consistent. -- Luca