Commit 77e83550 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

Merge tag 'peci-next-6.13-rc1' of...

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​
parents bd5ee6bc 733dc978
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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,
};