Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: media: omap24xx: tcm825x.c Fix that open brace { should be on the previous line

The patch fixes the following checkpatch.pl errors:
ERROR: that open brace { should be on the previous line.

Signed-off-by: Aybuke Ozdemir <aybuke.147@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Aybuke Ozdemir and committed by
Greg Kroah-Hartman
da54e4a5 86a7dacc

+4 -4
+4 -4
drivers/staging/media/omap24xx/tcm825x.c
··· 249 249 }; 250 250 251 251 252 - static const struct tcm825x_reg *tcm825x_siz_reg[NUM_IMAGE_SIZES] = 253 - { &subqcif, &qqvga, &qcif, &qvga, &cif, &vga }; 252 + static const struct tcm825x_reg *tcm825x_siz_reg[NUM_IMAGE_SIZES] = { 253 + &subqcif, &qqvga, &qcif, &qvga, &cif, &vga }; 254 254 255 - static const struct tcm825x_reg *tcm825x_fmt_reg[NUM_PIXEL_FORMATS] = 256 - { &yuv422, &rgb565 }; 255 + static const struct tcm825x_reg *tcm825x_fmt_reg[NUM_PIXEL_FORMATS] = { 256 + &yuv422, &rgb565 }; 257 257 258 258 /* 259 259 * Read a value from a register in an TCM825X sensor device. The value is