drm/panel/s6e3ha2: remove spare underscore 55/84555/3
authorAndrzej Hajda <a.hajda@samsung.com>
Thu, 18 Aug 2016 15:41:48 +0000 (17:41 +0200)
committerInki Dae <inki.dae@samsung.com>
Tue, 23 Aug 2016 07:30:04 +0000 (00:30 -0700)
Coding style fix.

Change-Id: I9924bfd1ef18130fd36b6120cec0cd6c9dcfc278
Signed-off-by: Andrzej Hajda <a.hajda@samsung.com>
drivers/gpu/drm/panel/panel-s6e3ha2.c

index 7f9662a8ee7d2c030fccf06e99bf8d434ef501d2..771f342359e3e57bcdb152afac308965eb4e86b6 100644 (file)
@@ -342,7 +342,7 @@ static void s6e3ha2_dcs_write(struct s6e3ha2 *ctx, const void *data, size_t len)
 
 #define NSEQ(seq...) sizeof((char[]){ seq }), seq
 
-static void s6e3ha2__write_nseq(struct s6e3ha2 *ctx, const u8 *nseq)
+static void s6e3ha2_write_nseq(struct s6e3ha2 *ctx, const u8 *nseq)
 {
        int count;
 
@@ -967,7 +967,7 @@ static void s6e3ha2_hmt_on(struct s6e3ha2 *ctx)
        };
        static const u8 *hmt_on[] = { ha2_hmt_on, hf2_hmt_on };
 
-       s6e3ha2__write_nseq(ctx, hmt_on[ctx->model]);
+       s6e3ha2_write_nseq(ctx, hmt_on[ctx->model]);
 }
 
 static void s6e3ha2_hmt_off(struct s6e3ha2 *ctx)
@@ -1002,7 +1002,7 @@ static void s6e3ha2_hmt_off(struct s6e3ha2 *ctx)
        };
        static const u8 *hmt_off[] = { ha2_hmt_off, hf2_hmt_off };
 
-       s6e3ha2__write_nseq(ctx, hmt_off[ctx->model]);
+       s6e3ha2_write_nseq(ctx, hmt_off[ctx->model]);
 }
 
 static void s6e3ha2_hmt_set(struct s6e3ha2 *ctx, bool enable)