diff options
author | Chun-Kuang Hu <chunkuang.hu@kernel.org> | 2025-02-09 05:11:02 +0300 |
---|---|---|
committer | Jassi Brar <jassisinghbrar@gmail.com> | 2025-03-27 04:58:24 +0300 |
commit | 98bbabbc12dce03da8473edd0bc8d7072d723769 (patch) | |
tree | 2551cb2bda4020507f34991349116c122d336bfa | |
parent | 4701f33a10702d5fc577c32434eb62adde0a1ae1 (diff) | |
download | linux-98bbabbc12dce03da8473edd0bc8d7072d723769.tar.xz |
mailbox: mtk-cmdq: remove cl in struct cmdq_pkt
Every client driver has the struct cmdq_client information, so
it's not necessary to store it in struct cmdq_pkt. cl is used to
store struct cmdq_client information and now no client driver use
it, so remove it.
Signed-off-by: Chun-Kuang Hu <chunkuang.hu@kernel.org>
Signed-off-by: Jassi Brar <jassisinghbrar@gmail.com>
-rw-r--r-- | include/linux/mailbox/mtk-cmdq-mailbox.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/mailbox/mtk-cmdq-mailbox.h b/include/linux/mailbox/mtk-cmdq-mailbox.h index a8f0070c7aa9..4c1a91b07de3 100644 --- a/include/linux/mailbox/mtk-cmdq-mailbox.h +++ b/include/linux/mailbox/mtk-cmdq-mailbox.h @@ -75,7 +75,6 @@ struct cmdq_pkt { dma_addr_t pa_base; size_t cmd_buf_size; /* command occupied size */ size_t buf_size; /* real buffer size */ - void *cl; }; u8 cmdq_get_shift_pa(struct mbox_chan *chan); |