driver/ioexpander: remove response about irq_handler

Signed-off-by: Jiuzhu Dong <dongjiuzhu1@xiaomi.com>
This commit is contained in:
Jiuzhu Dong 2022-04-26 17:17:01 +08:00 committed by Xiang Xiao
parent db54b0b836
commit 54b770d46a

View File

@ -452,8 +452,9 @@ static void ioe_rpmsg_irqworker(FAR void *priv_)
msg.cbfunc = cb->cbfunc;
msg.cbarg = cb->cbarg;
ioe_rpmsg_sendrecv(cb->ept, IOE_RPMSG_IRQ,
(struct ioe_rpmsg_header_s *)&msg, sizeof(msg));
msg.header.command = IOE_RPMSG_IRQ;
msg.header.response = 0;
rpmsg_send(cb->ept, &msg, sizeof(msg));
cb->pendset = 0;
}