Skip to content

Commit e2d6af1

Browse files
JiafeiPanfabiobaltieri
authored andcommitted
tracing: rtio: fix building error in rtio header file
This patch is to fix the following building issue: include/zephyr/rtio/rtio.h:1773:51: error: 'rtio' undeclared (first use in this function) Signed-off-by: Jiafei Pan <Jiafei.Pan@nxp.com>
1 parent 3ebf293 commit e2d6af1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/zephyr/rtio/rtio.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1770,7 +1770,7 @@ static inline int z_impl_rtio_submit(struct rtio *r, uint32_t wait_count)
17701770
static inline int z_impl_rtio_submit(struct rtio *r, uint32_t wait_count)
17711771
{
17721772

1773-
SYS_PORT_TRACING_FUNC_ENTER(rtio, submit, rtio, wait_count);
1773+
SYS_PORT_TRACING_FUNC_ENTER(rtio, submit, r, wait_count);
17741774
int res = 0;
17751775
uintptr_t cq_count = (uintptr_t)atomic_get(&r->cq_count);
17761776
uintptr_t cq_complete_count = cq_count + wait_count;

0 commit comments

Comments
 (0)