Loading drivers/spi/spi.c +28 −17 Original line number Diff line number Diff line Loading @@ -571,7 +571,7 @@ static int __spi_map_msg(struct spi_master *master, struct spi_message *msg) return 0; } static int spi_unmap_msg(struct spi_master *master, struct spi_message *msg) static int __spi_unmap_msg(struct spi_master *master, struct spi_message *msg) { struct spi_transfer *xfer; struct device *tx_dev, *rx_dev; Loading @@ -583,15 +583,6 @@ static int spi_unmap_msg(struct spi_master *master, struct spi_message *msg) rx_dev = master->dma_rx->device->dev; list_for_each_entry(xfer, &msg->transfers, transfer_list) { /* * Restore the original value of tx_buf or rx_buf if they are * NULL. */ if (xfer->tx_buf == master->dummy_tx) xfer->tx_buf = NULL; if (xfer->rx_buf == master->dummy_rx) xfer->rx_buf = NULL; if (!master->can_dma(master, msg->spi, xfer)) continue; Loading @@ -608,13 +599,32 @@ static inline int __spi_map_msg(struct spi_master *master, return 0; } static inline int spi_unmap_msg(struct spi_master *master, static inline int __spi_unmap_msg(struct spi_master *master, struct spi_message *msg) { return 0; } #endif /* !CONFIG_HAS_DMA */ static inline int spi_unmap_msg(struct spi_master *master, struct spi_message *msg) { struct spi_transfer *xfer; list_for_each_entry(xfer, &msg->transfers, transfer_list) { /* * Restore the original value of tx_buf or rx_buf if they are * NULL. */ if (xfer->tx_buf == master->dummy_tx) xfer->tx_buf = NULL; if (xfer->rx_buf == master->dummy_rx) xfer->rx_buf = NULL; } return __spi_unmap_msg(master, msg); } static int spi_map_msg(struct spi_master *master, struct spi_message *msg) { struct spi_transfer *xfer; Loading Loading @@ -988,9 +998,6 @@ void spi_finalize_current_message(struct spi_master *master) spin_lock_irqsave(&master->queue_lock, flags); mesg = master->cur_msg; master->cur_msg = NULL; queue_kthread_work(&master->kworker, &master->pump_messages); spin_unlock_irqrestore(&master->queue_lock, flags); spi_unmap_msg(master, mesg); Loading @@ -1003,9 +1010,13 @@ void spi_finalize_current_message(struct spi_master *master) } } trace_spi_message_done(mesg); spin_lock_irqsave(&master->queue_lock, flags); master->cur_msg = NULL; master->cur_msg_prepared = false; queue_kthread_work(&master->kworker, &master->pump_messages); spin_unlock_irqrestore(&master->queue_lock, flags); trace_spi_message_done(mesg); mesg->state = NULL; if (mesg->complete) Loading Loading
drivers/spi/spi.c +28 −17 Original line number Diff line number Diff line Loading @@ -571,7 +571,7 @@ static int __spi_map_msg(struct spi_master *master, struct spi_message *msg) return 0; } static int spi_unmap_msg(struct spi_master *master, struct spi_message *msg) static int __spi_unmap_msg(struct spi_master *master, struct spi_message *msg) { struct spi_transfer *xfer; struct device *tx_dev, *rx_dev; Loading @@ -583,15 +583,6 @@ static int spi_unmap_msg(struct spi_master *master, struct spi_message *msg) rx_dev = master->dma_rx->device->dev; list_for_each_entry(xfer, &msg->transfers, transfer_list) { /* * Restore the original value of tx_buf or rx_buf if they are * NULL. */ if (xfer->tx_buf == master->dummy_tx) xfer->tx_buf = NULL; if (xfer->rx_buf == master->dummy_rx) xfer->rx_buf = NULL; if (!master->can_dma(master, msg->spi, xfer)) continue; Loading @@ -608,13 +599,32 @@ static inline int __spi_map_msg(struct spi_master *master, return 0; } static inline int spi_unmap_msg(struct spi_master *master, static inline int __spi_unmap_msg(struct spi_master *master, struct spi_message *msg) { return 0; } #endif /* !CONFIG_HAS_DMA */ static inline int spi_unmap_msg(struct spi_master *master, struct spi_message *msg) { struct spi_transfer *xfer; list_for_each_entry(xfer, &msg->transfers, transfer_list) { /* * Restore the original value of tx_buf or rx_buf if they are * NULL. */ if (xfer->tx_buf == master->dummy_tx) xfer->tx_buf = NULL; if (xfer->rx_buf == master->dummy_rx) xfer->rx_buf = NULL; } return __spi_unmap_msg(master, msg); } static int spi_map_msg(struct spi_master *master, struct spi_message *msg) { struct spi_transfer *xfer; Loading Loading @@ -988,9 +998,6 @@ void spi_finalize_current_message(struct spi_master *master) spin_lock_irqsave(&master->queue_lock, flags); mesg = master->cur_msg; master->cur_msg = NULL; queue_kthread_work(&master->kworker, &master->pump_messages); spin_unlock_irqrestore(&master->queue_lock, flags); spi_unmap_msg(master, mesg); Loading @@ -1003,9 +1010,13 @@ void spi_finalize_current_message(struct spi_master *master) } } trace_spi_message_done(mesg); spin_lock_irqsave(&master->queue_lock, flags); master->cur_msg = NULL; master->cur_msg_prepared = false; queue_kthread_work(&master->kworker, &master->pump_messages); spin_unlock_irqrestore(&master->queue_lock, flags); trace_spi_message_done(mesg); mesg->state = NULL; if (mesg->complete) Loading