From patchwork Wed Jul 4 08:14:04 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: 1154961 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork1.kernel.org (Postfix) with ESMTP id D0E9C3FE4F for ; Wed, 4 Jul 2012 08:20:18 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1SmKlF-000058-Sc; Wed, 04 Jul 2012 08:16:34 +0000 Received: from mail-we0-f177.google.com ([74.125.82.177]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1SmKj7-00085c-07 for linux-arm-kernel@lists.infradead.org; Wed, 04 Jul 2012 08:14:44 +0000 Received: by werb13 with SMTP id b13so2410711wer.36 for ; Wed, 04 Jul 2012 01:14:16 -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=mB/sbonzqVU8Sj0mmhfE+fajfLpjaRDH6uM0lUJ5FF4=; b=O9zESmVvKAhuHzkAPNqtna0v8B7l0pHGufsgDxUO4AAxDMKH4U/iuThekhkBAsjJVt 0EIndzyHDrRwkMAa3EQW3hney21q2A46tYS4w8K6QssUcGs1cIKMyCKTbYvjqBGBQIgV hiSr5viuLyGQ2r+ROkoBoD7+kG/YgCXewRFnhRF7mQBtpZwWZInI7erxUnPbIuCw4Bmo jCTAr9DjNSOFD1yEO6E/mgVIXdrqstU+gWIQb9x92h9kHKAKDggeRpQg5QcsbANg1YM3 r4arS6mkDfN6w2/Ick46GMyssdLbxW6KgZ7ZKa96VLlz8gxWrGr3IYypJYipnvL4jvSC XVBA== Received: by 10.216.132.130 with SMTP id o2mr6015687wei.129.1341389656190; Wed, 04 Jul 2012 01:14:16 -0700 (PDT) Received: from ohad-desktop.Home (93-172-10-162.bb.netvision.net.il. [93.172.10.162]) by mx.google.com with ESMTPS id k8sm64387628wia.6.2012.07.04.01.14.14 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 04 Jul 2012 01:14:15 -0700 (PDT) From: Ohad Ben-Cohen To: Subject: [PATCH] remoteproc: fix missing CONFIG_FW_LOADER configurations Date: Wed, 4 Jul 2012 11:14:04 +0300 Message-Id: <1341389644-12834-1-git-send-email-ohad@wizery.com> X-Mailer: git-send-email 1.7.9.5 X-Gm-Message-State: ALoCoQkpaVXn0DsVHF7SgCSUm2SRBxtgKpIbUWGBkNWe2/Cof5BG7G9YaF7WsL4ziT/HLXM3dCJO X-Spam-Note: CRM114 invocation failed X-Spam-Score: -2.6 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.6 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [74.125.82.177 listed in list.dnswl.org] -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: Ohad Ben-Cohen , linux-omap@vger.kernel.org, Mark Grosen , linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org Remoteproc requires user space firmware loading support, so let's select FW_LOADER explicitly to avoid painful misconfigurations (which only show up in runtime). Cc: stable Reported-by: Mark Grosen 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 db4e39b..f8d818a 100644 --- a/drivers/remoteproc/Kconfig +++ b/drivers/remoteproc/Kconfig @@ -4,6 +4,7 @@ menu "Remoteproc drivers (EXPERIMENTAL)" config REMOTEPROC tristate depends on EXPERIMENTAL + select FW_CONFIG config OMAP_REMOTEPROC tristate "OMAP remoteproc support"