Commit 5f92798d authored by Federico Vaga's avatar Federico Vaga

Merge tag 'v1.1.1' into proposed_master

1.1.1 - 2020-09-14
==================

Fixed
-----
- sw: fix SPI driver to update the spi_message->actual_length
parents b839fbb2 96630ec6
......@@ -9,6 +9,14 @@ Change Log
- Format inspired by: `Keep a Changelog <https://keepachangelog.com/en/1.0.0/>`_
- Versioning scheme follows: `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`_
1.1.1 - 2020-09-14
==================
https://www.ohwr.org/project/general-cores/tags/v1.1.1
Fixed
-----
- sw: fix SPI driver to update the spi_message->actual_length
1.1.0 - 2020-07-24
==================
https://www.ohwr.org/project/general-cores/tags/v1.1.0
......
......@@ -416,8 +416,9 @@ static int spi_ocores_sw_xfer_finish(struct spi_ocores *sp)
sp->cur_tx_buf = NULL;
sp->cur_rx_buf = NULL;
sp->cur_len = 0;
sp->master->cur_msg->actual_length += sp->cur_xfer->len;
return 0;
return 0;
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment