mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
util/fifo8: Rename fifo8_pop_buf() -> fifo8_pop_bufptr()
Since fifo8_pop_buf() return a const buffer (which points directly into the FIFO backing store). Rename it using the 'bufptr' suffix to better reflect that it is a pointer to the internal buffer that is being returned. This will help differentiate with methods *copying* the FIFO data. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Reviewed-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Message-Id: <20240722160745.67904-6-philmd@linaro.org>
This commit is contained in:
parent
06a16e7ba9
commit
06252bf512
8 changed files with 15 additions and 16 deletions
|
@ -349,7 +349,7 @@ static void aw_emac_write(void *opaque, hwaddr offset, uint64_t value,
|
|||
"allwinner_emac: TX length > fifo data length\n");
|
||||
}
|
||||
if (len > 0) {
|
||||
data = fifo8_pop_buf(fifo, len, &ret);
|
||||
data = fifo8_pop_bufptr(fifo, len, &ret);
|
||||
qemu_send_packet(nc, data, ret);
|
||||
aw_emac_tx_reset(s, chan);
|
||||
/* Raise TX interrupt */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue