Commit da6264ba authored by Rahul Gottipati's avatar Rahul Gottipati Committed by Mauro Carvalho Chehab

media: intel-ipu3: Fix code style issue

This fixes a multiline comment style warning as found by checkpatch.pl.
Signed-off-by: default avatarRahul Gottipati <rahul.blr97@gmail.com>
Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 6b7324fb
...@@ -120,13 +120,13 @@ struct ipu3_uapi_awb_config { ...@@ -120,13 +120,13 @@ struct ipu3_uapi_awb_config {
#define IPU3_UAPI_AE_WEIGHTS 96 #define IPU3_UAPI_AE_WEIGHTS 96
/** /**
+ * struct ipu3_uapi_ae_raw_buffer - AE global weighted histogram * struct ipu3_uapi_ae_raw_buffer - AE global weighted histogram
+ * *
+ * @vals: Sum of IPU3_UAPI_AE_COLORS in cell * @vals: Sum of IPU3_UAPI_AE_COLORS in cell
+ * *
+ * Each histogram contains IPU3_UAPI_AE_BINS bins. Each bin has 24 bit unsigned * Each histogram contains IPU3_UAPI_AE_BINS bins. Each bin has 24 bit unsigned
+ * for counting the number of the pixel. * for counting the number of the pixel.
+ */ */
struct ipu3_uapi_ae_raw_buffer { struct ipu3_uapi_ae_raw_buffer {
__u32 vals[IPU3_UAPI_AE_BINS * IPU3_UAPI_AE_COLORS]; __u32 vals[IPU3_UAPI_AE_BINS * IPU3_UAPI_AE_COLORS];
} __packed; } __packed;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment