From patchwork Wed May 22 21:55:20 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kamal Mostafa X-Patchwork-Id: 245764 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) by ozlabs.org (Postfix) with ESMTP id 7848D2C00A3 for ; Thu, 23 May 2013 07:58:16 +1000 (EST) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.76) (envelope-from ) id 1UfH2w-0006qE-87; Wed, 22 May 2013 21:58:10 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by huckleberry.canonical.com with esmtp (Exim 4.76) (envelope-from ) id 1UfH0F-0004wZ-9u for kernel-team@lists.ubuntu.com; Wed, 22 May 2013 21:55:23 +0000 Received: from c-67-160-231-42.hsd1.ca.comcast.net ([67.160.231.42] helo=fourier) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1UfH0E-0000yq-O7; Wed, 22 May 2013 21:55:22 +0000 Received: from kamal by fourier with local (Exim 4.80) (envelope-from ) id 1UfH0C-0006Hl-Ig; Wed, 22 May 2013 14:55:20 -0700 From: Kamal Mostafa To: Suman Anna Subject: [ 3.8.y.z extended stable ] Patch "remoteproc: fix kconfig dependencies for VIRTIO" has been added to staging queue Date: Wed, 22 May 2013 14:55:20 -0700 Message-Id: <1369259720-24128-1-git-send-email-kamal@canonical.com> X-Mailer: git-send-email 1.8.1.2 X-Extended-Stable: 3.8 Cc: Ohad Ben-Cohen , Kamal Mostafa , kernel-team@lists.ubuntu.com X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.14 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: kernel-team-bounces@lists.ubuntu.com Sender: kernel-team-bounces@lists.ubuntu.com This is a note to let you know that I have just added a patch titled remoteproc: fix kconfig dependencies for VIRTIO to the linux-3.8.y-queue branch of the 3.8.y.z extended stable tree which can be found at: http://kernel.ubuntu.com/git?p=ubuntu/linux.git;a=shortlog;h=refs/heads/linux-3.8.y-queue If you, or anyone else, feels it should not be added to this tree, please reply to this email. For more information about the 3.8.y.z tree, see https://wiki.ubuntu.com/Kernel/Dev/ExtendedStable Thanks. -Kamal ------ From 09baf96c4ee60180a1bbe24502f3d428c4b9a3a3 Mon Sep 17 00:00:00 2001 From: Suman Anna Date: Sun, 21 Apr 2013 16:29:38 +0300 Subject: remoteproc: fix kconfig dependencies for VIRTIO commit b9777859ec015a78dae1476e317d04f851bfdd0d upstream. Fix this: warning: (VIRTIO_PCI && VIRTIO_MMIO && REMOTEPROC && RPMSG) selects VIRTIO which has unmet direct dependencies (VIRTUALIZATION) Signed-off-by: Suman Anna [edit commit log] Signed-off-by: Ohad Ben-Cohen [ kamal: backport to 3.8 ] Signed-off-by: Kamal Mostafa --- drivers/remoteproc/Kconfig | 1 + 1 file changed, 1 insertion(+) -- 1.8.1.2 diff --git a/drivers/remoteproc/Kconfig b/drivers/remoteproc/Kconfig index a936efb..97d75f0 100644 --- a/drivers/remoteproc/Kconfig +++ b/drivers/remoteproc/Kconfig @@ -7,6 +7,7 @@ config REMOTEPROC depends on HAS_DMA select FW_LOADER select VIRTIO + select VIRTUALIZATION config OMAP_REMOTEPROC tristate "OMAP remoteproc support"