Message ID | 20180417195323.GA69680@ivb43 (mailing list archive) |
---|---|
State | Accepted |
Commit | 71293a60e38f44b1d18c14803f0dd2744f6b9a12 |
Headers | show |
On 04/17/18 22:53, kbuild test robot wrote: > > Fixes: d5898e19c0d7 ("spi: pxa2xx: Use core message processing loop") > Signed-off-by: Fengguang Wu <fengguang.wu@intel.com> > --- > spi-pxa2xx.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/spi/spi-pxa2xx.c b/drivers/spi/spi-pxa2xx.c > index c852ea5..40f1346 100644 > --- a/drivers/spi/spi-pxa2xx.c > +++ b/drivers/spi/spi-pxa2xx.c > @@ -911,9 +911,9 @@ static bool pxa2xx_spi_can_dma(struct spi_controller *master, > xfer->len >= chip->dma_burst_size; > } > > -int pxa2xx_spi_transfer_one(struct spi_controller *master, > - struct spi_device *spi, > - struct spi_transfer *transfer) > +static int pxa2xx_spi_transfer_one(struct spi_controller *master, > + struct spi_device *spi, > + struct spi_transfer *transfer) Thanks Fengguang. I don't understand how I managed to drop "static" while doing manual s/pump_transfers/pxa2xx_spi_transfer_one/ :-) Reviewed-by: Jarkko Nikula <jarkko.nikula@linux.intel.com> -- 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-pxa2xx.c b/drivers/spi/spi-pxa2xx.c index c852ea5..40f1346 100644 --- a/drivers/spi/spi-pxa2xx.c +++ b/drivers/spi/spi-pxa2xx.c @@ -911,9 +911,9 @@ static bool pxa2xx_spi_can_dma(struct spi_controller *master, xfer->len >= chip->dma_burst_size; } -int pxa2xx_spi_transfer_one(struct spi_controller *master, - struct spi_device *spi, - struct spi_transfer *transfer) +static int pxa2xx_spi_transfer_one(struct spi_controller *master, + struct spi_device *spi, + struct spi_transfer *transfer) { struct driver_data *drv_data = spi_controller_get_devdata(master); struct spi_message *message = master->cur_msg;
Fixes: d5898e19c0d7 ("spi: pxa2xx: Use core message processing loop") Signed-off-by: Fengguang Wu <fengguang.wu@intel.com> --- spi-pxa2xx.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) -- 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