diff options
author | 2021-02-09 17:19:56 -0800 | |
---|---|---|
committer | 2021-02-09 17:19:56 -0800 | |
commit | ef7d0b599938450c54a8dc0aa4b954d73d9a9370 (patch) | |
tree | 9a5e4176997c56fc3f82809c1ad79140309df811 | |
parent | Merge tag 'trace-v5.11-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace (diff) | |
parent | i3c/master/mipi-i3c-hci: Fix position of __maybe_unused in i3c_hci_of_match (diff) | |
download | linux-dev-ef7d0b599938450c54a8dc0aa4b954d73d9a9370.tar.xz linux-dev-ef7d0b599938450c54a8dc0aa4b954d73d9a9370.zip |
Merge tag 'i3c/fixes-for-5.11' of git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux
Pull i3c fix from Alexandre Belloni:
"A single build warning fix"
* tag 'i3c/fixes-for-5.11' of git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux:
i3c/master/mipi-i3c-hci: Fix position of __maybe_unused in i3c_hci_of_match
-rw-r--r-- | drivers/i3c/master/mipi-i3c-hci/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i3c/master/mipi-i3c-hci/core.c b/drivers/i3c/master/mipi-i3c-hci/core.c index 500abd27fb22..1b73647cc3b1 100644 --- a/drivers/i3c/master/mipi-i3c-hci/core.c +++ b/drivers/i3c/master/mipi-i3c-hci/core.c @@ -777,7 +777,7 @@ static int i3c_hci_remove(struct platform_device *pdev) return 0; } -static const struct __maybe_unused of_device_id i3c_hci_of_match[] = { +static const __maybe_unused struct of_device_id i3c_hci_of_match[] = { { .compatible = "mipi-i3c-hci", }, {}, }; |