Fixed the issue of line should not end with '[' by moving arguments from next line to line ending with '[' Reported by checkpatch. Signed-off-by: Mitali Borkar <mitaliborkar810@xxxxxxxxx> --- drivers/staging/media/ipu3/include/intel-ipu3.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/staging/media/ipu3/include/intel-ipu3.h b/drivers/staging/media/ipu3/include/intel-ipu3.h index 53f8e5dec8f5..0451f8b7ba4f 100644 --- a/drivers/staging/media/ipu3/include/intel-ipu3.h +++ b/drivers/staging/media/ipu3/include/intel-ipu3.h @@ -246,8 +246,7 @@ struct ipu3_uapi_ae_ccm { */ struct ipu3_uapi_ae_config { struct ipu3_uapi_ae_grid_config grid_cfg __aligned(32); - struct ipu3_uapi_ae_weight_elem weights[ - IPU3_UAPI_AE_WEIGHTS] __aligned(32); + struct ipu3_uapi_ae_weight_elem weights[IPU3_UAPI_AE_WEIGHTS] __aligned(32); struct ipu3_uapi_ae_ccm ae_ccm __aligned(32); } __packed; -- 2.30.2