From patchwork Sun Jul 1 09:44:02 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ohad Ben Cohen X-Patchwork-Id: 1144021 Return-Path: X-Original-To: patchwork-linux-omap@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 71A23DF236 for ; Sun, 1 Jul 2012 09:44:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755045Ab2GAJoX (ORCPT ); Sun, 1 Jul 2012 05:44:23 -0400 Received: from mail-wi0-f178.google.com ([209.85.212.178]:45572 "EHLO mail-wi0-f178.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755439Ab2GAJoU (ORCPT ); Sun, 1 Jul 2012 05:44:20 -0400 Received: by wibhr14 with SMTP id hr14so2268746wib.1 for ; Sun, 01 Jul 2012 02:44:19 -0700 (PDT) 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:x-gm-message-state; bh=pDJEvUAV/3PKPtM0lmhjN9bdIXXEVf8ai8/65jt1DhU=; b=nXzpXxXWUapRWsGGW3toLbtZI9/10y9eBeB+fsOmywFAWbSd8lxcWaTKAFxaLhKx0U k7vEP/m418gvHQJsdfgSCtaLKkuhMoK68KBqnlGTnN5VBTfwndfQFU1Y3cK0GKTyZqz7 HWa0KA7bZztWxrcUOnHFqDomF8bj0mKMKJr42GO7ErlCDJutyvsekOi72RYagbzt8Y1b CV7CbnnDU5YJxOOuuz0OUX2EzxdG/PvU1OMKr/R359PheDIbT35tTvzoU28s7orCGeWV 891AK1CHaewc5X5Pls6lR68s1wt/8DE/mhGgrxfNy++32xDoGDS4lfjNxuOJs2trpDBM DvLg== Received: by 10.180.94.4 with SMTP id cy4mr9721485wib.2.1341135859443; Sun, 01 Jul 2012 02:44:19 -0700 (PDT) Received: from localhost.localdomain (93-172-43-174.bb.netvision.net.il. [93.172.43.174]) by mx.google.com with ESMTPS id k8sm31448472wia.6.2012.07.01.02.44.17 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 01 Jul 2012 02:44:18 -0700 (PDT) From: Ohad Ben-Cohen To: , , Cc: Tony Lindgren , Ohad Ben-Cohen Subject: [PATCH] remoteproc/omap: fix randconfig unmet direct dependencies Date: Sun, 1 Jul 2012 12:44:02 +0300 Message-Id: <1341135842-22006-1-git-send-email-ohad@wizery.com> X-Mailer: git-send-email 1.7.5.4 X-Gm-Message-State: ALoCoQkbBWIxfdj6IRDX+RwviqMqkWi8ndqH24A+75ThuUR55b4dETXr4AuxVlAEWjNCPKximg4P Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org OMAP_REMOTEPROC selects REMOTEPROC, which depends on EXPERIMENTAL, so let's have OMAP_REMOTEPROC depend on EXPERIMENTAL too, in order to avoid the below randconfig warnings. This will also (indirectly) take care of the RPMSG unmet dependencies warnings. warning: (OMAP_REMOTEPROC) selects REMOTEPROC which has unmet direct dependencies (EXPERIMENTAL) warning: (OMAP_REMOTEPROC) selects RPMSG which has unmet direct dependencies (EXPERIMENTAL) warning: (OMAP_REMOTEPROC) selects REMOTEPROC which has unmet direct dependencies (EXPERIMENTAL) warning: (OMAP_REMOTEPROC) selects RPMSG which has unmet direct dependencies (EXPERIMENTAL) Reported-by: Tony Lindgren Signed-off-by: Ohad Ben-Cohen --- drivers/remoteproc/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/remoteproc/Kconfig b/drivers/remoteproc/Kconfig index ff6f55c..726804e 100644 --- a/drivers/remoteproc/Kconfig +++ b/drivers/remoteproc/Kconfig @@ -8,6 +8,7 @@ config REMOTEPROC config OMAP_REMOTEPROC tristate "OMAP remoteproc support" + depends on EXPERIMENTAL depends on ARCH_OMAP4 depends on OMAP_IOMMU select REMOTEPROC