From patchwork Wed Nov 11 16:38:08 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Richard_R=C3=B6jfors?= X-Patchwork-Id: 38147 X-Patchwork-Delegate: grant.likely@secretlab.ca Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from bilbo.ozlabs.org (localhost [127.0.0.1]) by ozlabs.org (Postfix) with ESMTP id 1068BB7F5B for ; Thu, 12 Nov 2009 03:38:33 +1100 (EST) Received: by ozlabs.org (Postfix) id 23247B7BE7; Thu, 12 Nov 2009 03:38:11 +1100 (EST) Delivered-To: linuxppc-dev@ozlabs.org Received: from av8-2-sn3.vrr.skanova.net (av8-2-sn3.vrr.skanova.net [81.228.9.184]) by ozlabs.org (Postfix) with ESMTP id C36ACB7BC2 for ; Thu, 12 Nov 2009 03:38:10 +1100 (EST) Received: by av8-2-sn3.vrr.skanova.net (Postfix, from userid 502) id DE6433820E; Wed, 11 Nov 2009 17:38:08 +0100 (CET) Received: from smtp3-1-sn3.vrr.skanova.net (smtp3-1-sn3.vrr.skanova.net [81.228.9.101]) by av8-2-sn3.vrr.skanova.net (Postfix) with ESMTP id B124C381CD; Wed, 11 Nov 2009 17:38:08 +0100 (CET) Received: from [10.8.36.47] (213-65-251-99-no35.business.telia.com [213.65.251.99]) by smtp3-1-sn3.vrr.skanova.net (Postfix) with ESMTP id 8F32C37E47; Wed, 11 Nov 2009 17:38:08 +0100 (CET) Message-ID: <4AFAE870.7080308@mocean-labs.com> Date: Wed, 11 Nov 2009 17:38:08 +0100 From: =?ISO-8859-1?Q?Richard_R=F6jfors?= User-Agent: Mozilla-Thunderbird 2.0.0.22 (X11/20091109) MIME-Version: 1.0 To: spi-devel-general@lists.sourceforge.net Subject: [PATCH v2] xilinx_spi: Add the platform driver to the Kconfig X-Enigmail-Version: 0.95.0 Cc: linuxppc-dev@ozlabs.org, Andrew Morton , dbrownell@users.sourceforge.net, John Linn X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org Errors-To: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org This patch adds the xilinx_spi_pltfm to the SPI Kconfig and Makefile. The xilinx_spi_pltfm was added in a previous patchset. Signed-off-by: Richard Röjfors diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig index b956284..d1f8ee3 100644 --- a/drivers/spi/Kconfig +++ b/drivers/spi/Kconfig @@ -252,6 +252,13 @@ config SPI_XILINX_OF help This is the OF driver for the SPI controller IP from the Xilinx EDK. +config SPI_XILINX_PLTFM + tristate "Xilinx SPI controller platform device" + depends on SPI_XILINX + help + This is the platform driver for the SPI controller IP + from the Xilinx EDK. + # # Add new SPI master controllers in alphabetical order above this line # diff --git a/drivers/spi/Makefile b/drivers/spi/Makefile index 97dee8f..d8b0e4c 100644 --- a/drivers/spi/Makefile +++ b/drivers/spi/Makefile @@ -32,6 +32,7 @@ obj-$(CONFIG_SPI_S3C24XX) += spi_s3c24xx.o obj-$(CONFIG_SPI_TXX9) += spi_txx9.o obj-$(CONFIG_SPI_XILINX) += xilinx_spi.o obj-$(CONFIG_SPI_XILINX_OF) += xilinx_spi_of.o +obj-$(CONFIG_SPI_XILINX_PLTFM) += xilinx_spi_pltfm.o obj-$(CONFIG_SPI_SH_SCI) += spi_sh_sci.o obj-$(CONFIG_SPI_STMP3XXX) += spi_stmp.o # ... add above this line ...