Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b6cce155 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "spi : spi_qsd : Initialise complete signal only once in probe"

parents ad33cbf9 04c60784
Loading
Loading
Loading
Loading
+5 −3
Original line number Original line Diff line number Diff line
/* Copyright (c) 2008-2018, The Linux Foundation. All rights reserved.
/* Copyright (c) 2008-2019, The Linux Foundation. All rights reserved.
 *
 *
 * This program is free software; you can redistribute it and/or modify
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
 * it under the terms of the GNU General Public License version 2 and
@@ -1390,8 +1390,8 @@ static int msm_spi_process_transfer(struct msm_spi *dd)
	dd->write_buf          = dd->cur_transfer->tx_buf;
	dd->write_buf          = dd->cur_transfer->tx_buf;
	dd->tx_done = false;
	dd->tx_done = false;
	dd->rx_done = false;
	dd->rx_done = false;
	init_completion(&dd->tx_transfer_complete);
	reinit_completion(&dd->tx_transfer_complete);
	init_completion(&dd->rx_transfer_complete);
	reinit_completion(&dd->rx_transfer_complete);
	if (dd->cur_transfer->bits_per_word)
	if (dd->cur_transfer->bits_per_word)
		bpw = dd->cur_transfer->bits_per_word;
		bpw = dd->cur_transfer->bits_per_word;
	else
	else
@@ -2716,6 +2716,8 @@ skip_dma_resources:
	spin_lock_init(&dd->queue_lock);
	spin_lock_init(&dd->queue_lock);
	mutex_init(&dd->core_lock);
	mutex_init(&dd->core_lock);
	init_waitqueue_head(&dd->continue_suspend);
	init_waitqueue_head(&dd->continue_suspend);
	init_completion(&dd->tx_transfer_complete);
	init_completion(&dd->rx_transfer_complete);


	if (!devm_request_mem_region(&pdev->dev, dd->mem_phys_addr,
	if (!devm_request_mem_region(&pdev->dev, dd->mem_phys_addr,
					dd->mem_size, SPI_DRV_NAME)) {
					dd->mem_size, SPI_DRV_NAME)) {