From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S967190AbdADBU3 (ORCPT ); Tue, 3 Jan 2017 20:20:29 -0500 Received: from mail-pg0-f66.google.com ([74.125.83.66]:36567 "EHLO mail-pg0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965582AbdADBUU (ORCPT ); Tue, 3 Jan 2017 20:20:20 -0500 From: Derek Robson To: thomas.petazzoni@free-electrons.com Cc: noralf@tronnes.org, gregkh@linuxfoundation.org, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, Derek Robson Subject: [PATCH] Staging: fbtft: hx8340bn: Style fix, octal not decimal permissions Date: Wed, 4 Jan 2017 14:20:01 +1300 Message-Id: <20170104012001.6607-1-robsonde@gmail.com> X-Mailer: git-send-email 2.11.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Fixed coding style issue, found with Checkpatch.pl changed permissions to octal style. --- drivers/staging/fbtft/fb_hx8340bn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/fbtft/fb_hx8340bn.c b/drivers/staging/fbtft/fb_hx8340bn.c index 9970ed74bb38..c24331cc179c 100644 --- a/drivers/staging/fbtft/fb_hx8340bn.c +++ b/drivers/staging/fbtft/fb_hx8340bn.c @@ -37,7 +37,7 @@ "3 3 17 8 4 7 05 7 6 0 3 1 6 0 0 " static bool emulate; -module_param(emulate, bool, 0); +module_param(emulate, bool, 0000); MODULE_PARM_DESC(emulate, "Force emulation in 9-bit mode"); static int init_display(struct fbtft_par *par) -- 2.11.0