1
0
Fork 0

regmap: Add kerneldoc for struct regmap_config

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
hifive-unleashed-5.1
Mark Brown 2011-07-20 22:28:58 +01:00
parent 322a8b0340
commit dd898b2095
1 changed files with 6 additions and 0 deletions

View File

@ -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;