diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2022-05-25 01:02:58 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2022-05-25 01:02:58 +0300 |
commit | 5d23bb5f25ed9cbf530b99640f4f17f59b79de9e (patch) | |
tree | befaeb3c2eabab1e7769210eb71144a990e549e2 /drivers/base/regmap/regmap-i3c.c | |
parent | 638971b77f1c4fb9997c674ad66d1b96f7931c2b (diff) | |
parent | 5c422f0b970d287efa864b8390a02face404db5d (diff) | |
download | linux-5d23bb5f25ed9cbf530b99640f4f17f59b79de9e.tar.xz |
Merge tag 'regmap-v5.19' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap
Pull regmap updates from Mark Brown:
"The main change here is Marek's addition of bulk read/write callbacks
for individual regmaps, we've supported single register operations for
a while but there's enough hardware out there which can use bulk
equivalents to make it worthwhile"
* tag 'regmap-v5.19' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap:
regmap: Add missing map->bus check
regmap: Add bulk read/write callbacks into regmap_config
regmap: cache: set max_register with reg_stride
regmap: Constify static regmap_bus structs
Diffstat (limited to 'drivers/base/regmap/regmap-i3c.c')
-rw-r--r-- | drivers/base/regmap/regmap-i3c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/regmap/regmap-i3c.c b/drivers/base/regmap/regmap-i3c.c index 1578fb506683..0328b0b34284 100644 --- a/drivers/base/regmap/regmap-i3c.c +++ b/drivers/base/regmap/regmap-i3c.c @@ -40,7 +40,7 @@ static int regmap_i3c_read(void *context, return i3c_device_do_priv_xfers(i3c, xfers, 2); } -static struct regmap_bus regmap_i3c = { +static const struct regmap_bus regmap_i3c = { .write = regmap_i3c_write, .read = regmap_i3c_read, }; |