From patchwork Tue Jun 6 15:27:21 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 9770251 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 522B26034B for ; Wed, 7 Jun 2017 00:23:58 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 333A42834A for ; Wed, 7 Jun 2017 00:23:58 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 28278284C5; Wed, 7 Jun 2017 00:23:58 +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=-4.1 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_MED,T_DKIM_INVALID 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 C69E92834A for ; Wed, 7 Jun 2017 00:23:57 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id C50F76E0C5; Wed, 7 Jun 2017 00:23:50 +0000 (UTC) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from bombadil.infradead.org (bombadil.infradead.org [65.50.211.133]) by gabe.freedesktop.org (Postfix) with ESMTPS id A44316E10D for ; Tue, 6 Jun 2017 15:27:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=Content-Transfer-Encoding: Content-Type:MIME-Version:Date:Message-ID:Cc:To:Subject:From:Sender:Reply-To: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=VIRnrd/WQWNLab+IVknBZGslfNCr7Y+mqQhnqxKSbrY=; b=Y2ZxSZXZPsOsEVzFZvaPFqSkv yiL4g0qCMrF21wbDe7gIUFvwZe/ecCjLgiUhnnbwExGL6g/SnikQJ/lJ4fb3dIxIbtixP+BKx9nmC YWp7uU33xvdReRTH5MLb/zjJJnu9yXtkoRYmZuNkDNciT5kc1MUS5hdD0wnwVRgeigPeapPPGDu40 8+elFFrBjgHfc+FiVnVPhrwIJhf6Pjfw6pPmi+6O+awCfQZWG2ik5NJ6Z2adsY/nKw4g/fQz0EEJ7 TFkUyabZItyA3pYkAG/7QGAdBHXw34q0Ms0LFJ0uSxNwOQ+0I68JYoyvCg/YN6vX1QxNCoMR6ta2e VWaH9kFVw==; Received: from static-50-53-52-16.bvtn.or.frontiernet.net ([50.53.52.16] helo=[192.168.1.19]) by bombadil.infradead.org with esmtpsa (Exim 4.87 #1 (Red Hat Linux)) id 1dIGOA-000192-6g; Tue, 06 Jun 2017 15:27:22 +0000 From: Randy Dunlap Subject: [PATCH -next] drm: pl111: select DRM_PANEL To: Dave Airlie , Eric Anholt , dri-devel Message-ID: <083cf535-e0cc-ffc5-be5f-5a122f9f50fa@infradead.org> Date: Tue, 6 Jun 2017 08:27:21 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.1.0 MIME-Version: 1.0 Content-Language: en-US X-Mailman-Approved-At: Wed, 07 Jun 2017 00:23:49 +0000 Cc: LKML X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" X-Virus-Scanned: ClamAV using ClamSMTP From: Randy Dunlap The drm pl111 driver uses drm_panel interfaces so it should select DRM_PANEL to fix build errors. drivers/built-in.o: In function `pl111_connector_destroy': pl111_connector.c:(.text+0xc7285): undefined reference to `drm_panel_detach' Signed-off-by: Randy Dunlap --- drivers/gpu/drm/pl111/Kconfig | 1 + 1 file changed, 1 insertion(+) --- linux-next-20170606.orig/drivers/gpu/drm/pl111/Kconfig +++ linux-next-20170606/drivers/gpu/drm/pl111/Kconfig @@ -3,6 +3,7 @@ config DRM_PL111 depends on DRM depends on ARM || ARM64 || COMPILE_TEST depends on COMMON_CLK + select DRM_PANEL select DRM_KMS_HELPER select DRM_KMS_CMA_HELPER select DRM_GEM_CMA_HELPER