From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754856AbcI2Bvf (ORCPT ); Wed, 28 Sep 2016 21:51:35 -0400 Received: from mail-pf0-f196.google.com ([209.85.192.196]:32984 "EHLO mail-pf0-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750738AbcI2Bv0 (ORCPT ); Wed, 28 Sep 2016 21:51:26 -0400 From: Nahom To: plagnioj@jcrosoft.com Cc: tomi.valkeinen@ti.com, linux-fbdev@vger.kernel.org, linux-kernel@vger.kernel.org, Nahom Subject: [PATCH] video: console: bitblit: fixed an indentation coding style issue Date: Wed, 28 Sep 2016 18:51:14 -0700 Message-Id: <1475113874-8319-1-git-send-email-nahomagidew@gmail.com> X-Mailer: git-send-email 2.7.4 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Fixed a coding style issue. Signed-off-by: Nahom --- drivers/video/console/bitblit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/console/bitblit.c b/drivers/video/console/bitblit.c index dbfe4ee..4e7d0e3 100644 --- a/drivers/video/console/bitblit.c +++ b/drivers/video/console/bitblit.c @@ -256,7 +256,7 @@ static void bit_cursor(struct vc_data *vc, struct fb_info *info, int mode, y += softback_lines; } - c = scr_readw((u16 *) vc->vc_pos); + c = scr_readw((u16 *) vc->vc_pos); attribute = get_attribute(info, c); src = vc->vc_font.data + ((c & charmask) * (w * vc->vc_font.height)); -- 2.7.4