From patchwork Thu Feb 13 03:04:23 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 3641931 X-Patchwork-Delegate: bhelgaas@google.com Return-Path: X-Original-To: patchwork-linux-pci@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 5C9859F334 for ; Thu, 13 Feb 2014 03:03:40 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 8C1582018E for ; Thu, 13 Feb 2014 03:03:39 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B47482015D for ; Thu, 13 Feb 2014 03:03:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753114AbaBMDDN (ORCPT ); Wed, 12 Feb 2014 22:03:13 -0500 Received: from mail-pb0-f53.google.com ([209.85.160.53]:62181 "EHLO mail-pb0-f53.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753106AbaBMDDL (ORCPT ); Wed, 12 Feb 2014 22:03:11 -0500 Received: by mail-pb0-f53.google.com with SMTP id md12so10114613pbc.40 for ; Wed, 12 Feb 2014 19:03:10 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:date:message-id:in-reply-to:references:subject; bh=vWUHB3Oi4NLRCQFqBb5MG/wixIniJR6LQnLYP0Nvbu8=; b=g4reQOdNUZXegYp2H6vwGVW9lrp8PMfOTYgGcH8TND4v1GucuX6DNa4ER67E3qEoeP NZXOJCKOtOQXvYT+boC8pB3xPKNedDSTcUkCIgTrneS/V8mttzz4OBw7kXlL5Y6gp/tW bhXcYDVU9yuWwxvxdpblX3m27QlRHXBcAQERw+o1I5SN42vD0WxUZvUegu0cSsQw8V08 L0N+e0/oddB2UBVHwVA1NRNL2+XS53URi0UzWStVf9YLxwkVOKKc+fYca7Q+Ws9GAKyr q5j+1/Tq42LcSx35buaqpyJiTtsgr5UnYYyob/jEYuvA/umJynUyuXaIRggoF9z/QuR6 StVQ== X-Received: by 10.66.50.105 with SMTP id b9mr43798015pao.9.1392260590590; Wed, 12 Feb 2014 19:03:10 -0800 (PST) Received: from [127.0.0.1] (s214090.ppp.asahi-net.or.jp. [220.157.214.90]) by mx.google.com with ESMTPSA id ix5sm976473pbd.36.2014.02.12.19.03.07 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 12 Feb 2014 19:03:09 -0800 (PST) From: Magnus Damm To: linux-pci@vger.kernel.org Cc: horms@verge.net.au, linux-sh@vger.kernel.org, linux-kernel@vger.kernel.org, valentine.barshak@cogentembedded.com, ben.dooks@codethink.co.uk, geert@linux-m68k.org, bhelgaas@google.com, Magnus Damm Date: Thu, 13 Feb 2014 12:04:23 +0900 Message-Id: <20140213030423.10398.4149.sendpatchset@w520> In-Reply-To: <20140213030302.10398.37322.sendpatchset@w520> References: <20140213030302.10398.37322.sendpatchset@w520> Subject: [PATCH 08/08] PCI: rcar: Make the Kconfig dependencies more generic Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org X-Spam-Status: No, score=-7.4 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Magnus Damm Update the R-Car Generation 2 PCI driver Kconfig dependencies to follow same style as other drivers - no SoC dependencies. Also, update the COMPILE_TEST bits to depend on ARM. This since the DMA bounce buffer and dma_ops handling code is ARM specific. Signed-off-by: Magnus Damm --- drivers/pci/host/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- 0010/drivers/pci/host/Kconfig +++ work/drivers/pci/host/Kconfig 2014-02-13 11:19:19.000000000 +0900 @@ -27,7 +27,7 @@ config PCI_TEGRA config PCI_RCAR_GEN2 bool "Renesas R-Car Gen2 Internal PCI controller" - depends on ARM && (ARCH_R8A7790 || ARCH_R8A7791 || COMPILE_TEST) + depends on ARCH_SHMOBILE || (ARM && COMPILE_TEST) select GENERIC_ALLOCATOR select DMABOUNCE select BOUNCE if HIGHMEM