From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tom Date: Fri, 08 Jan 2010 07:50:08 -0600 Subject: [U-Boot] [PATCH v5] TI DaVinci: Driver for the davinci SPI controller In-Reply-To: <1262857972-24235-1-git-send-email-sudhakar.raj@ti.com> References: <1262857972-24235-1-git-send-email-sudhakar.raj@ti.com> Message-ID: <4B473810.6030200@windriver.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Sudhakar Rajashekhara wrote: > From: Sekhar Nori > > This adds a driver for the SPI controller found on davinci > based SoCs from Texas Instruments. > > Signed-off-by: Sekhar Nori > Signed-off-by: Sudhakar Rajashekhara > --- > From the previous version, following are the modifications: > 1. Argument to sizeof() changed in spi_setup_slave() function. > 2. Check for NULL before calling free() is removed in > spi_free_slave() function. > 3. Check for NULL before calling container_of() function in > SPI header file was removed. > > drivers/spi/Makefile | 1 + > drivers/spi/davinci_spi.c | 223 +++++++++++++++++++++++++++++++++++++++++++++ > drivers/spi/davinci_spi.h | 102 +++++++++++++++++++++ > 3 files changed, 326 insertions(+), 0 deletions(-) > create mode 100644 drivers/spi/davinci_spi.c > create mode 100644 drivers/spi/davinci_spi.h > > diff --git a/drivers/spi/Makefile b/drivers/spi/Makefile > index 824d8e7..f112ed0 100644 I believe you have addressed all the outstanding issues. Thank you Ack-ed Tom