Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions drivers/i2c/i2c_rtio.c
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ int i2c_rtio_configure(struct i2c_rtio *ctx, uint32_t i2c_config)
}

sqe->op = RTIO_OP_I2C_CONFIGURE;
sqe->flags = 0;
sqe->iodev = iodev;
sqe->i2c_config = i2c_config;

Expand Down Expand Up @@ -245,6 +246,7 @@ int i2c_rtio_recover(struct i2c_rtio *ctx)
}

sqe->op = RTIO_OP_I2C_RECOVER;
sqe->flags = 0;
sqe->iodev = iodev;

rtio_submit(r, 1);
Expand Down
3 changes: 3 additions & 0 deletions drivers/i3c/i3c_rtio.c
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ int i3c_rtio_configure(struct i3c_rtio *ctx, enum i3c_config_type type, void *co
}

sqe->op = RTIO_OP_I3C_CONFIGURE;
sqe->flags = 0;
sqe->iodev = iodev;
sqe->i3c_config.type = type;
sqe->i3c_config.config = config;
Expand Down Expand Up @@ -213,6 +214,7 @@ int i3c_rtio_ccc(struct i3c_rtio *ctx, struct i3c_ccc_payload *payload)
}

sqe->op = RTIO_OP_I3C_CCC;
sqe->flags = 0;
sqe->iodev = iodev;
sqe->ccc_payload = payload;

Expand Down Expand Up @@ -249,6 +251,7 @@ int i3c_rtio_recover(struct i3c_rtio *ctx)
}

sqe->op = RTIO_OP_I3C_RECOVER;
sqe->flags = 0;
sqe->iodev = iodev;

rtio_submit(r, 1);
Expand Down
Loading