aboutsummaryrefslogtreecommitdiff
path: root/drivers/base/regmap/regmap-i3c.c
AgeCommit message (Collapse)AuthorFilesLines
2024-04-10regmap: Drop capitalisation in MODULE_DESCRIPTION()Andy Shevchenko1-1/+1
'Regmap' should be spelled as 'regmap'. Update that. Suggested-by: Mark Brown <[email protected]> Signed-off-by: Andy Shevchenko <[email protected]> Link: https://msgid.link/r/[email protected] Signed-off-by: Mark Brown <[email protected]>
2022-04-04regmap: Constify static regmap_bus structsRikard Falkeborn1-1/+1
The only usage of these is to pass their address to __regmap_init() or __devm_regmap_init(), both which takes pointers to const struct regmap_bus. Make them const to allow the compiler to put them in read-only memory. Signed-off-by: Rikard Falkeborn <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Mark Brown <[email protected]>
2019-06-07regmap: add i3c bus supportVitor Soares1-0/+60
Add basic support for i3c bus. This is a simple implementation that only give support for SDR Read and Write commands. Signed-off-by: Vitor Soares <[email protected]> Signed-off-by: Mark Brown <[email protected]>