From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cao Minh Hiep Date: Thu, 30 Apr 2015 00:26:46 +0000 Subject: Re: [PATCH 1/3] spi: Re-do the returning value of rspi_dma_check_then_transfer Message-Id: <554176C6.8040402@jinso.co.jp> List-Id: References: <1430200551-20708-1-git-send-email-cm-hiep@jinso.co.jp> <1430200551-20708-2-git-send-email-cm-hiep@jinso.co.jp> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit To: Geert Uytterhoeven Cc: Geert Uytterhoeven , Mark Brown , linux-spi , Kuninori Morimoto , Yoshihiro Shimoda , Ryusuke Sakato , Linux-sh list Hi Geert-san, On 2015年04月28日 18:02, Geert Uytterhoeven wrote: > Hi Hiep-san, > > On Tue, Apr 28, 2015 at 7:55 AM, Cao Minh Hiep wrote: >> To reduce indentation and complex of code, insteeds of returning zero, >> the function rspi_dma_check_then_transfer should be returned >> rspi_dma_transfer directly after checking error. > Thanks for the update! > > Unfortunately it doesn't compile... Sorry to bother you again. >> --- a/drivers/spi/spi-rspi.c >> +++ b/drivers/spi/spi-rspi.c >> @@ -665,15 +665,12 @@ static bool rspi_can_dma(struct spi_master *master, struct spi_device *spi, >> static int rspi_dma_check_then_transfer(struct rspi_data *rspi, >> struct spi_transfer *xfer) >> { >> - if (rspi->master->can_dma && __rspi_can_dma(rspi, xfer)) { >> - /* rx_buf can be NULL on RSPI on SH in TX-only Mode */ >> - int ret = rspi_dma_transfer(rspi, &xfer->tx_sg, >> - xfer->rx_buf ? &xfer->rx_sg : NULL); >> - if (ret != -EAGAIN) >> - return 0; >> - } >> + if (!rspi->master->can_dma || !__rspi_can_dma(rspi, xfer)) { > Superfluous opening curly brace. > Please compile and run test your patches. > Thanks! Thanks, I'll fix it and send you at a moment. >> + return -EAGAIN; >> >> - return -EAGAIN; >> + /* rx_buf can be NULL on RSPI on SH in TX-only Mode */ >> + return rspi_dma_transfer(rspi, &xfer->tx_sg, >> + xfer->rx_buf ? &xfer->rx_sg : NULL); >> } >> >> static int rspi_common_transfer(struct rspi_data *rspi, > > > Hiep.