regmap: Add kerneldoc for struct regmap_config

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
Mark Brown 2011-07-20 22:28:58 +01:00
parent 322a8b0340
commit dd898b2095

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;