Commit dd898b20 authored by Mark Brown's avatar Mark Brown

regmap: Add kerneldoc for struct regmap_config

Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 322a8b03
......@@ -20,6 +20,12 @@
struct i2c_client;
struct spi_device;
/**
* Configuration for the register map of a device.
*
* @reg_bits: Number of bits in a register address, mandatory.
* @val_bits: Number of bits in a register value, mandatory.
*/
struct regmap_config {
int reg_bits;
int val_bits;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment