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

staging: fbtft: Fix multi-line comment style

Thus use the preferred style for multi-line coments as
mentioned in Documentation/CodingStyle.

It also silences 'Block comments use * on subsequent lines'
checkpatch.pl warnings.

Signed-off-by: Cristina Moraru <cristina.moraru09@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Cristina Moraru and committed by
Greg Kroah-Hartman
ed400c96 f4edff52

+20 -20
+20 -20
drivers/staging/fbtft/fb_ssd1351.c
··· 97 97 } 98 98 99 99 /* 100 - Grayscale Lookup Table 101 - GS1 - GS63 102 - The driver Gamma curve contains the relative values between the entries 103 - in the Lookup table. 104 - 105 - From datasheet: 106 - 8.8 Gray Scale Decoder 107 - 108 - there are total 180 Gamma Settings (Setting 0 to Setting 180) 109 - available for the Gray Scale table. 110 - 111 - The gray scale is defined in incremental way, with reference 112 - to the length of previous table entry: 113 - Setting of GS1 has to be >= 0 114 - Setting of GS2 has to be > Setting of GS1 +1 115 - Setting of GS3 has to be > Setting of GS2 +1 116 - : 117 - Setting of GS63 has to be > Setting of GS62 +1 118 - 119 - */ 100 + * Grayscale Lookup Table 101 + * GS1 - GS63 102 + * The driver Gamma curve contains the relative values between the entries 103 + * in the Lookup table. 104 + * 105 + * From datasheet: 106 + * 8.8 Gray Scale Decoder 107 + * 108 + * there are total 180 Gamma Settings (Setting 0 to Setting 180) 109 + * available for the Gray Scale table. 110 + * 111 + * The gray scale is defined in incremental way, with reference 112 + * to the length of previous table entry: 113 + * Setting of GS1 has to be >= 0 114 + * Setting of GS2 has to be > Setting of GS1 +1 115 + * Setting of GS3 has to be > Setting of GS2 +1 116 + * : 117 + * Setting of GS63 has to be > Setting of GS62 +1 118 + * 119 + */ 120 120 static int set_gamma(struct fbtft_par *par, unsigned long *curves) 121 121 { 122 122 unsigned long tmp[GAMMA_NUM * GAMMA_LEN];