From patchwork Tue Jun 19 11:16:27 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fengguang Wu X-Patchwork-Id: 10474141 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 0D48B60383 for ; Tue, 19 Jun 2018 11:17:25 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 06AAF28AB7 for ; Tue, 19 Jun 2018 11:17:25 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id EF3C828AC8; Tue, 19 Jun 2018 11:17:24 +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 E33C128AB7 for ; Tue, 19 Jun 2018 11:17:23 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 744F16E220; Tue, 19 Jun 2018 11:17:21 +0000 (UTC) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by gabe.freedesktop.org (Postfix) with ESMTPS id ED74E6E220 for ; Tue, 19 Jun 2018 11:17:18 +0000 (UTC) X-Amp-Result: UNSCANNABLE X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 19 Jun 2018 04:17:18 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,242,1526367600"; d="scan'208";a="233759945" Received: from bee.sh.intel.com (HELO bee) ([10.239.97.14]) by orsmga005.jf.intel.com with ESMTP; 19 Jun 2018 04:17:15 -0700 Received: from kbuild by bee with local (Exim 4.84_2) (envelope-from ) id 1fVEdO-0007jX-Pt; Tue, 19 Jun 2018 19:17:14 +0800 Date: Tue, 19 Jun 2018 19:16:27 +0800 From: kbuild test robot To: Stefan Mavrodiev Subject: [RFC PATCH] drm/panel: lcd_olinuxino_funcs can be static Message-ID: <20180619111627.GA67130@cairo> References: <1529397260-16340-1-git-send-email-stefan@olimex.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <1529397260-16340-1-git-send-email-stefan@olimex.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: lkp@intel.com X-SA-Exim-Scanned: No (on bee); SAEximRunCond expanded to false 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: Mark Rutland , "open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS" , Stefan Mavrodiev , David Airlie , Greg Kroah-Hartman , "open list:DRM PANEL DRIVERS" , Randy Dunlap , open list , Rob Herring , Thierry Reding , kbuild-all@01.org, Mauro Carvalho Chehab , Andrew Morton , "David S. Miller" Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" X-Virus-Scanned: ClamAV using ClamSMTP Fixes: 17a867cdd048 ("drm/panel: Add support for Olimex LCD-OLinuXino panel") Signed-off-by: kbuild test robot --- panel-olimex-lcd-olinuxino.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c b/drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c index 0bc04ff..daa9ef5 100644 --- a/drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c +++ b/drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c @@ -212,7 +212,7 @@ static int lcd_olinuxino_get_modes(struct drm_panel *panel) return num; } -struct drm_panel_funcs lcd_olinuxino_funcs = { +static struct drm_panel_funcs lcd_olinuxino_funcs = { .disable = lcd_olinuxino_disable, .unprepare = lcd_olinuxino_unprepare, .prepare = lcd_olinuxino_prepare,