Message ID | 1478565346-4320-1-git-send-email-cm-hiep@jinso.co.jp (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Tue, Nov 08, 2016 at 09:35:46AM +0900, Cao Minh Hiep wrote: > From: Hiep Cao Minh <cm-hiep@jinso.co.jp> > > This patch rewrites the name of rspi_pio_transfer_in_or_out > function. This doesn't apply against current code, please check and resend.
Hi Mark. Thanks for your reply. On 11/09/2016 11:05 PM, Mark Brown wrote: > On Tue, Nov 08, 2016 at 09:35:46AM +0900, Cao Minh Hiep wrote: >> From: Hiep Cao Minh <cm-hiep@jinso.co.jp> >> >> This patch rewrites the name of rspi_pio_transfer_in_or_out >> function. > This doesn't apply against current code, please check and resend. It's ok, we don't need this patch any more because of the Arnd Bergmann's "spi: rspi: avoid uninitialized variable access" patch. Thanks, Jinzai Solution Inc, Hiep. -- To unsubscribe from this list: send the line "unsubscribe linux-spi" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/spi/spi-rspi.c b/drivers/spi/spi-rspi.c index fb12bc5..7d3a825 100644 --- a/drivers/spi/spi-rspi.c +++ b/drivers/spi/spi-rspi.c @@ -515,7 +515,7 @@ static int rspi_pio_transfer(struct rspi_data *rspi, const u8 *tx, u8 *rx, return 0; } -static int rspi_pio_transfer_in_or_our(struct rspi_data *rspi, const u8 *tx, +static int rspi_pio_transfer_in_or_out(struct rspi_data *rspi, const u8 *tx, u8 *rx, unsigned int n) { unsigned int i, len; @@ -839,7 +839,7 @@ static int qspi_transfer_out(struct rspi_data *rspi, struct spi_transfer *xfer) return ret; } - ret = rspi_pio_transfer_in_or_our(rspi, xfer->tx_buf, NULL, xfer->len); + ret = rspi_pio_transfer_in_or_out(rspi, xfer->tx_buf, NULL, xfer->len); if (ret < 0) return ret; @@ -857,7 +857,7 @@ static int qspi_transfer_in(struct rspi_data *rspi, struct spi_transfer *xfer) return ret; } - return rspi_pio_transfer_in_or_our(rspi, NULL, xfer->rx_buf, xfer->len); + return rspi_pio_transfer_in_or_out(rspi, NULL, xfer->rx_buf, xfer->len); } static int qspi_transfer_one(struct spi_master *master, struct spi_device *spi,