From patchwork Thu Dec 13 11:18:38 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Vetter X-Patchwork-Id: 1871831 Return-Path: X-Original-To: patchwork-dri-devel@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by patchwork2.kernel.org (Postfix) with ESMTP id 3DCB2DF2EF for ; Thu, 13 Dec 2012 11:22:06 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 260FA43699 for ; Thu, 13 Dec 2012 03:22:06 -0800 (PST) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-ea0-f177.google.com (mail-ea0-f177.google.com [209.85.215.177]) by gabe.freedesktop.org (Postfix) with ESMTP id D5CAFE691C for ; Thu, 13 Dec 2012 03:18:44 -0800 (PST) Received: by mail-ea0-f177.google.com with SMTP id c10so662034eaa.36 for ; Thu, 13 Dec 2012 03:18:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ffwll.ch; s=google; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=AkO3rF1Ykn3VQWC8mFWBg+3QatHsWlHZnZsM8BB14cM=; b=OhjMQaSuiKrvY7/UdFMCqowDUgH2Cx8jaJNcQQ8B6whojWRyWu65q/yigjJDeEOPrr 9/OT/lBv9sFCnlzLWyiCsW8a0y1dlrk3yqub54hEuk0NcaLytv59CzpsJxLHlD8hK3ze gebX8Bn3Q1R1I4jNsdKbwYSxai2l08U9yOalk= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references :x-gm-message-state; bh=AkO3rF1Ykn3VQWC8mFWBg+3QatHsWlHZnZsM8BB14cM=; b=Y4E9o4xAyK8vLK0cZ4sp7t1qw5AhH71+gh0pZDvhNfm69tPBdXbVoPfiD97/OUPngP aClV2iv3EHYIMYCM6GuefHS/le3HNet3olUAVYNPdoFMrO2lLU1hbccbNfgOvsfktQcE bQGKjK6tR23V2dMQ3bwb7XtxMDuqxj5t3L9Zpaznn0EVtln4RyM/igePULt5c4bNas/T bXQdKrg5lu3enOTMbMtO7jpBb6VkVCYq/0QfZDyx0D/sEsmWGdpqdFinBXqXbwqkbiOw XV/1eCBW9GvqT83bJsieGhWkOluF3VpxSdHJJT1w8hSOHm0/UyItTGtV6kZSV+ribs6t lg1w== Received: by 10.14.209.193 with SMTP id s41mr4527414eeo.9.1355397523916; Thu, 13 Dec 2012 03:18:43 -0800 (PST) Received: from biers.ffwll.local (178-83-130-250.dynamic.hispeed.ch. [178.83.130.250]) by mx.google.com with ESMTPS id f49sm2356406eep.12.2012.12.13.03.18.42 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 13 Dec 2012 03:18:43 -0800 (PST) From: Daniel Vetter To: DRI Development Subject: [PATCH] allow shmob+imx drm drivers to be compiled Date: Thu, 13 Dec 2012 12:18:38 +0100 Message-Id: <1355397518-25569-1-git-send-email-daniel.vetter@ffwll.ch> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1355317637-16742-35-git-send-email-daniel.vetter@ffwll.ch> References: <1355317637-16742-35-git-send-email-daniel.vetter@ffwll.ch> X-Gm-Message-State: ALoCoQm3PrM4B2uibJoklvrl9yM4JfqioHvkqdtWzfRrrBvFNpaHufTzRyFXbvjLCFtajU9bVYqF Cc: Nouveau Dev , Intel Graphics Development , Daniel Vetter X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org Errors-To: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org --- drivers/gpu/drm/shmobile/Kconfig | 2 +- drivers/staging/imx-drm/Kconfig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/shmobile/Kconfig b/drivers/gpu/drm/shmobile/Kconfig index 7e7d52b..1cf8566 100644 --- a/drivers/gpu/drm/shmobile/Kconfig +++ b/drivers/gpu/drm/shmobile/Kconfig @@ -1,6 +1,6 @@ config DRM_SHMOBILE tristate "DRM Support for SH Mobile" - depends on DRM && (SUPERH || ARCH_SHMOBILE) + #depends on DRM && (SUPERH || ARCH_SHMOBILE) select DRM_KMS_HELPER select DRM_KMS_CMA_HELPER select DRM_GEM_CMA_HELPER diff --git a/drivers/staging/imx-drm/Kconfig b/drivers/staging/imx-drm/Kconfig index 14b4449..266cc35 100644 --- a/drivers/staging/imx-drm/Kconfig +++ b/drivers/staging/imx-drm/Kconfig @@ -3,7 +3,7 @@ config DRM_IMX select DRM_KMS_HELPER select DRM_GEM_CMA_HELPER select DRM_KMS_CMA_HELPER - depends on DRM && ARCH_MXC + #depends on DRM && ARCH_MXC help enable i.MX graphics support