diff options
author | 2024-10-29 04:17:30 +0100 | |
---|---|---|
committer | 2024-10-29 04:17:30 +0100 | |
commit | 77e83550465900ab8454eeb9183df5927f30c599 (patch) | |
tree | 28061e522d199c7a7c4b21cf1aa045098c02f004 | |
parent | rust: miscdevice: add missing safety comments (diff) | |
parent | peci: npcm: Constify struct peci_controller_ops (diff) | |
download | wireguard-linux-77e83550465900ab8454eeb9183df5927f30c599.tar.xz wireguard-linux-77e83550465900ab8454eeb9183df5927f30c599.zip |
Merge tag 'peci-next-6.13-rc1' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/iwi/linux into char-misc-next
Iwona writes:
Update peci-next for v6.13-rc1
A small change in peci-npcm driver to mark peci_controller_ops as const.
* tag 'peci-next-6.13-rc1' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/iwi/linux:
peci: npcm: Constify struct peci_controller_ops
-rw-r--r-- | drivers/peci/controller/peci-npcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/peci/controller/peci-npcm.c b/drivers/peci/controller/peci-npcm.c index ec613d35c796..fa91be58f6f3 100644 --- a/drivers/peci/controller/peci-npcm.c +++ b/drivers/peci/controller/peci-npcm.c @@ -224,7 +224,7 @@ static const struct regmap_config npcm_peci_regmap_config = { .fast_io = true, }; -static struct peci_controller_ops npcm_ops = { +static const struct peci_controller_ops npcm_ops = { .xfer = npcm_peci_xfer, }; |