From patchwork Fri Apr 11 19:00:01 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Brian Norris X-Patchwork-Id: 338625 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 159181400BD for ; Sat, 12 Apr 2014 05:03:18 +1000 (EST) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1WYghO-0005eD-Oc; Fri, 11 Apr 2014 19:01:14 +0000 Received: from mail-qc0-x22e.google.com ([2607:f8b0:400d:c01::22e]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1WYghA-0005Nu-Qo for linux-mtd@lists.infradead.org; Fri, 11 Apr 2014 19:01:01 +0000 Received: by mail-qc0-f174.google.com with SMTP id c9so6304358qcz.19 for ; Fri, 11 Apr 2014 12:00:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=94XZdAhOGWXBMTuf9yKw1K2tb4navboRUzFiXDE0pZs=; b=a6SDhF/qajEvnvZaIwqZrjQyaF316bIPoG+X0zyme8pxAhLNW3j+w2xdzdIhCthIgj 2xT1y9mRU4ZfrBsIO0abRrz70vU6RVyXDTfXLMJg97+I4/tHnp1khSuEMKVf1vREkvYi zBZR5bfRuK0FGX8CdaHwjdsO4B+IMNgdd/TulyeXksWLfx2axziPBkWMX/hW5HuV0r/2 6+jIXKsQDUVf6UrbXA42T5oc1x+mC5DVH9dGRkDTQiiOO7/lfy4Eyxk/fRQ6bzQeYyEB S5UQ8VWOGbD/gnPuGXPUYyY6h4yMFtnZyKaDXV0uh9LHirfn+mbmQ7FHd7bi5QrZO7FL 6dvw== X-Received: by 10.140.23.148 with SMTP id 20mr6260347qgp.89.1397242839514; Fri, 11 Apr 2014 12:00:39 -0700 (PDT) Received: from ld-irv-0074.broadcom.com (5520-maca-inet1-outside.broadcom.com. [216.31.211.11]) by mx.google.com with ESMTPSA id 1sm3367056qgg.5.2014.04.11.12.00.38 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 11 Apr 2014 12:00:39 -0700 (PDT) From: Brian Norris To: Subject: [PATCH v3 06/11] mtd: st_spi_fsm: fixup Kconfig dependency Date: Fri, 11 Apr 2014 12:00:01 -0700 Message-Id: <1397242806-7575-7-git-send-email-computersforpeace@gmail.com> X-Mailer: git-send-email 1.8.3.2 In-Reply-To: <1397242806-7575-1-git-send-email-computersforpeace@gmail.com> References: <1397242806-7575-1-git-send-email-computersforpeace@gmail.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20140411_120100_964068_A35CFC83 X-CRM114-Status: GOOD ( 10.03 ) X-Spam-Score: -0.1 (/) X-Spam-Report: SpamAssassin version 3.3.2 on bombadil.infradead.org summary: Content analysis details: (-0.1 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (computersforpeace[at]gmail.com) -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain Cc: Marek Vasut , Huang Shijie , Brian Norris , Lee Jones X-BeenThere: linux-mtd@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-mtd" Errors-To: linux-mtd-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org I hear that this driver should depend on ARCH_STI, and that "SH" is not actually a real symbol. At the same time, let's allow compile-testing on other ARCH'es. Signed-off-by: Brian Norris Acked-by: Lee Jones Reviewed-by: Marek Vasut --- v3: no change drivers/mtd/devices/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mtd/devices/Kconfig b/drivers/mtd/devices/Kconfig index f9e32b53dfc6..9aae1042c14f 100644 --- a/drivers/mtd/devices/Kconfig +++ b/drivers/mtd/devices/Kconfig @@ -212,7 +212,7 @@ config MTD_DOCG3 config MTD_ST_SPI_FSM tristate "ST Microelectronics SPI FSM Serial Flash Controller" - depends on ARM || SH + depends on ARCH_STI || COMPILE_TEST help This provides an MTD device driver for the ST Microelectronics SPI Fast Sequence Mode (FSM) Serial Flash Controller and support