From: Rahul Gottipati Date: Wed, 22 Jul 2020 08:20:48 +0000 (+0200) Subject: media: intel-ipu3: Fix code style issue X-Git-Tag: v5.10.7~1469^2~400 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=da6264baf933c09a87034585dff3b80111bfd68b;p=platform%2Fkernel%2Flinux-rpi.git media: intel-ipu3: Fix code style issue This fixes a multiline comment style warning as found by checkpatch.pl. Signed-off-by: Rahul Gottipati Signed-off-by: Sakari Ailus Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/staging/media/ipu3/include/intel-ipu3.h b/drivers/staging/media/ipu3/include/intel-ipu3.h index a607b01..3a45c1f 100644 --- a/drivers/staging/media/ipu3/include/intel-ipu3.h +++ b/drivers/staging/media/ipu3/include/intel-ipu3.h @@ -120,13 +120,13 @@ struct ipu3_uapi_awb_config { #define IPU3_UAPI_AE_WEIGHTS 96 /** - + * struct ipu3_uapi_ae_raw_buffer - AE global weighted histogram - + * - + * @vals: Sum of IPU3_UAPI_AE_COLORS in cell - + * - + * Each histogram contains IPU3_UAPI_AE_BINS bins. Each bin has 24 bit unsigned - + * for counting the number of the pixel. - + */ + * struct ipu3_uapi_ae_raw_buffer - AE global weighted histogram + * + * @vals: Sum of IPU3_UAPI_AE_COLORS in cell + * + * Each histogram contains IPU3_UAPI_AE_BINS bins. Each bin has 24 bit unsigned + * for counting the number of the pixel. + */ struct ipu3_uapi_ae_raw_buffer { __u32 vals[IPU3_UAPI_AE_BINS * IPU3_UAPI_AE_COLORS]; } __packed;