From patchwork Fri Aug 3 16:47:16 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fengguang Wu X-Patchwork-Id: 10555301 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id ACD6715E9 for ; Fri, 3 Aug 2018 16:48:01 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 789792A730 for ; Fri, 3 Aug 2018 16:48:00 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 6D0D42A778; Fri, 3 Aug 2018 16:48:00 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.2 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 2A7672A730 for ; Fri, 3 Aug 2018 16:48:00 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 918D16E772; Fri, 3 Aug 2018 16:47:57 +0000 (UTC) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by gabe.freedesktop.org (Postfix) with ESMTPS id 960686E778 for ; Fri, 3 Aug 2018 16:47:56 +0000 (UTC) X-Amp-Result: UNSCANNABLE X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 03 Aug 2018 09:47:56 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,439,1526367600"; d="scan'208";a="62180498" Received: from bee.sh.intel.com (HELO lkp-server01) ([10.239.97.14]) by orsmga008.jf.intel.com with ESMTP; 03 Aug 2018 09:47:54 -0700 Received: from kbuild by lkp-server01 with local (Exim 4.89) (envelope-from ) id 1fldF1-0008MV-5v; Sat, 04 Aug 2018 00:47:51 +0800 Date: Sat, 4 Aug 2018 00:47:16 +0800 From: kbuild test robot To: Abhinav Kumar Subject: [RFC PATCH] drm/panel: panel_cmds_set_1[] can be static Message-ID: <20180803164716.GA26485@lkp-g5> References: <1533265776-14326-1-git-send-email-abhinavk@codeaurora.org> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <1533265776-14326-1-git-send-email-abhinavk@codeaurora.org> User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: linux-arm-msm@vger.kernel.org, dri-devel@lists.freedesktop.org, "abhinavk@codeaurora.org" , thierry.reding@gmail.com, hoegsberg@google.com, kbuild-all@01.org, chandanu@codeaurora.org Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" X-Virus-Scanned: ClamAV using ClamSMTP Fixes: fe3734f91d5e ("drm/panel: Add support for Truly NT35597 panel") Signed-off-by: kbuild test robot --- panel-truly-nt35597.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-truly-nt35597.c b/drivers/gpu/drm/panel/panel-truly-nt35597.c index e6c7662..f53dc8a 100644 --- a/drivers/gpu/drm/panel/panel-truly-nt35597.c +++ b/drivers/gpu/drm/panel/panel-truly-nt35597.c @@ -65,7 +65,7 @@ struct cmd_set { u8 commands[MAX_LEN]; }; -struct cmd_set panel_cmds_set_1[] = { +static struct cmd_set panel_cmds_set_1[] = { /* CMD2_P0 */ { { 0xff, 0x20 } }, { { 0xfb, 0x01 } }, @@ -204,12 +204,12 @@ struct cmd_set panel_cmds_set_1[] = { { { 0xFF, 0x10 } }, }; -struct cmd_set panel_cmds_set_2[] = { +static struct cmd_set panel_cmds_set_2[] = { /* VBP+VSA=,VFP = 10H */ { { 0x3B, 0x03, 0x0A, 0x0A } }, }; -struct cmd_set panel_cmds_set_3[] = { +static struct cmd_set panel_cmds_set_3[] = { /* FTE on */ { { 0x35, 0x00 } }, /* EN_BK =1(auto black) */