mmio: Fix buffer_to_fifo32() order of arguments
buffer_to_fifo32() is a simple wrapper to buffer_to_fifo32_prefix(), but unfortunately its arguments are swapped. This patch fixes the issue. Change-Id: I6414bf51dd9de681b3b87bbaf4ea4efc815f7ae1 Signed-off-by: Julius Werner <jwerner@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36942 Reviewed-by: Hung-Te Lin <hungte@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
a2148377b5
commit
9f19dd9f61
|
@ -458,7 +458,7 @@ void buffer_to_fifo32_prefix(void *buffer, u32 prefix, int prefsz, size_t size,
|
|||
static inline void buffer_to_fifo32(void *buffer, size_t size, void *fifo,
|
||||
int fifo_stride, int fifo_width)
|
||||
{
|
||||
buffer_to_fifo32_prefix(buffer, size, 0, 0, fifo,
|
||||
buffer_to_fifo32_prefix(buffer, 0, 0, size, fifo,
|
||||
fifo_stride, fifo_width);
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -48,7 +48,7 @@ void buffer_to_fifo32_prefix(void *buffer, u32 prefix, int prefsz, size_t size,
|
|||
static inline void buffer_to_fifo32(void *buffer, size_t size, void *fifo,
|
||||
int fifo_stride, int fifo_width)
|
||||
{
|
||||
buffer_to_fifo32_prefix(buffer, size, 0, 0, fifo,
|
||||
buffer_to_fifo32_prefix(buffer, 0, 0, size, fifo,
|
||||
fifo_stride, fifo_width);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue