Message ID | 20220502090225.26478-3-marcan@marcan.st (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | mailbox: apple: peek_data cleanup and implementation | expand |
On 5/2/22 4:02 AM, Hector Martin wrote: > This op was ambiguously specified, and the way it was interpreted for > this implementation is not useful. It has no users, so remove it. The > function is used internally by the driver, so just remove it from the > ops structure. > > Signed-off-by: Hector Martin <marcan@marcan.st> Acked-by: Samuel Holland <samuel@sholland.org>
diff --git a/drivers/mailbox/sun6i-msgbox.c b/drivers/mailbox/sun6i-msgbox.c index 7f8d931042d3..47aedda80f3f 100644 --- a/drivers/mailbox/sun6i-msgbox.c +++ b/drivers/mailbox/sun6i-msgbox.c @@ -189,7 +189,6 @@ static const struct mbox_chan_ops sun6i_msgbox_chan_ops = { .startup = sun6i_msgbox_startup, .shutdown = sun6i_msgbox_shutdown, .last_tx_done = sun6i_msgbox_last_tx_done, - .peek_data = sun6i_msgbox_peek_data, }; static int sun6i_msgbox_probe(struct platform_device *pdev)
This op was ambiguously specified, and the way it was interpreted for this implementation is not useful. It has no users, so remove it. The function is used internally by the driver, so just remove it from the ops structure. Signed-off-by: Hector Martin <marcan@marcan.st> --- drivers/mailbox/sun6i-msgbox.c | 1 - 1 file changed, 1 deletion(-)