From patchwork Tue Aug 14 06:37:20 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 10724 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 591AB23E53 for ; Tue, 14 Aug 2012 06:39:10 +0000 (UTC) Received: from mail-gg0-f180.google.com (mail-gg0-f180.google.com [209.85.161.180]) by fiordland.canonical.com (Postfix) with ESMTP id 21C35A19106 for ; Tue, 14 Aug 2012 06:39:10 +0000 (UTC) Received: by ggmi2 with SMTP id i2so55539ggm.11 for ; Mon, 13 Aug 2012 23:39:09 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:from:to:cc :subject:date:message-id:x-mailer:x-gm-message-state; bh=8TGC7gWPEJJrnx5A0TwQtIFznhhnYxhb71Qa5VELo4A=; b=G+I+vFrIgGaouVQ5Gsl8ER0xhjwO5dd8QHqBG4SRVygYCo0r2kJqODLuCvEDOgMnlp omnFg0uOBXk3K+i5Yqqm+dWcqo6EZODBlAoupikebY2Uc29o7MHZKqi4IRmwinASOkmC /DF3r5eWEV99rkm63KCtQJsnflDixYvJAO8mvI6BdcsjibnLj2xYJ5GJiD0E00jOi0q3 ZTpei+Mww/ojAXh16TcrgSSZ8YBYMeRaZkxggDo2v3XJ9ej0wZwbu/IDipZlAW/JBqrv 6Nomm/VUQCTUgSJdqIN8THs0J8RrtoFSd1xAnB/lyzx/0/KkTBuaZlPpdxk9EJkptuot u6kQ== Received: by 10.50.170.3 with SMTP id ai3mr9945917igc.9.1344926349396; Mon, 13 Aug 2012 23:39:09 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.50.184.200 with SMTP id ew8csp68igc; Mon, 13 Aug 2012 23:39:08 -0700 (PDT) Received: by 10.101.7.19 with SMTP id k19mr4266299ani.6.1344926348711; Mon, 13 Aug 2012 23:39:08 -0700 (PDT) Received: from mail-gh0-f178.google.com (mail-gh0-f178.google.com [209.85.160.178]) by mx.google.com with ESMTPS id e22si1679374yhh.54.2012.08.13.23.39.08 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 13 Aug 2012 23:39:08 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.160.178 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.160.178; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.160.178 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) smtp.mail=sachin.kamat@linaro.org Received: by ghbf1 with SMTP id f1so64568ghb.37 for ; Mon, 13 Aug 2012 23:39:08 -0700 (PDT) Received: by 10.66.78.73 with SMTP id z9mr28166323paw.9.1344926347937; Mon, 13 Aug 2012 23:39:07 -0700 (PDT) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id kt8sm531599pbc.1.2012.08.13.23.39.03 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 13 Aug 2012 23:39:07 -0700 (PDT) From: Sachin Kamat To: dri-devel@lists.freedesktop.org Cc: inki.dae@samsung.com, airlied@linux.ie, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH] drm/exynos: Add dependency for G2D in Kconfig Date: Tue, 14 Aug 2012 12:07:20 +0530 Message-Id: <1344926240-3747-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 X-Gm-Message-State: ALoCoQko+gFdh6l7cZW+tpkSOF2bMISgOXozeGd5s90ukdry+pItkXugtrj0mmyBtu1iKn3468SC Select Exynos DRM based G2D only if non-DRM based Exynos G2D driver is not selected. Signed-off-by: Sachin Kamat --- drivers/gpu/drm/exynos/Kconfig | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/gpu/drm/exynos/Kconfig b/drivers/gpu/drm/exynos/Kconfig index 7f50967..59a26e5 100644 --- a/drivers/gpu/drm/exynos/Kconfig +++ b/drivers/gpu/drm/exynos/Kconfig @@ -36,6 +36,6 @@ config DRM_EXYNOS_VIDI config DRM_EXYNOS_G2D bool "Exynos DRM G2D" - depends on DRM_EXYNOS + depends on DRM_EXYNOS && !VIDEO_SAMSUNG_S5P_G2D help Choose this option if you want to use Exynos G2D for DRM.