summaryrefslogtreecommitdiff
path: root/drivers/staging/fbtft/fb_hx8347d.c
diff options
context:
space:
mode:
authorEva Rachel Retuya <eraretuya@gmail.com>2016-02-10 12:56:06 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-02-12 06:54:36 +0300
commite0246ea37406fe0e6c794567e721b26aa8f0c831 (patch)
treebec7c2fa3d00f59c14c29e473463a1689a78138d /drivers/staging/fbtft/fb_hx8347d.c
parent60112069a9fce40025929d3ecd908c2f628ce931 (diff)
downloadlinux-e0246ea37406fe0e6c794567e721b26aa8f0c831.tar.xz
staging: fbtft: Fix block comments according to kernel coding style
Add the required trailing * on subsequent lines as well as move the */ on a separate line. Checkpatch found this issue. Signed-off-by: Eva Rachel Retuya <eraretuya@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/fbtft/fb_hx8347d.c')
-rw-r--r--drivers/staging/fbtft/fb_hx8347d.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/fbtft/fb_hx8347d.c b/drivers/staging/fbtft/fb_hx8347d.c
index 6ff76e531a37..4e9a6b0ce6a2 100644
--- a/drivers/staging/fbtft/fb_hx8347d.c
+++ b/drivers/staging/fbtft/fb_hx8347d.c
@@ -97,10 +97,10 @@ static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
}
/*
- Gamma string format:
- VRP0 VRP1 VRP2 VRP3 VRP4 VRP5 PRP0 PRP1 PKP0 PKP1 PKP2 PKP3 PKP4 CGM
- VRN0 VRN1 VRN2 VRN3 VRN4 VRN5 PRN0 PRN1 PKN0 PKN1 PKN2 PKN3 PKN4 CGM
-*/
+ * Gamma string format:
+ * VRP0 VRP1 VRP2 VRP3 VRP4 VRP5 PRP0 PRP1 PKP0 PKP1 PKP2 PKP3 PKP4 CGM
+ * VRN0 VRN1 VRN2 VRN3 VRN4 VRN5 PRN0 PRN1 PKN0 PKN1 PKN2 PKN3 PKN4 CGM
+ */
#define CURVE(num, idx) curves[num * par->gamma.num_values + idx]
static int set_gamma(struct fbtft_par *par, unsigned long *curves)
{