diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-07-20 21:28:58 (GMT) |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-08-08 06:47:00 (GMT) |
commit | dd898b209577b83283bb62400c96426d7582e5a2 (patch) | |
tree | 2fb11efe2e29aab8ab6a092e887dc406e28d2979 | |
parent | 322a8b034003c0d46d39af85bf24fee27b902f48 (diff) | |
download | linux-fsl-qoriq-dd898b209577b83283bb62400c96426d7582e5a2.tar.xz |
regmap: Add kerneldoc for struct regmap_config
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
-rw-r--r-- | include/linux/regmap.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/regmap.h b/include/linux/regmap.h index 60a65cd..cf8e4cf 100644 --- a/include/linux/regmap.h +++ b/include/linux/regmap.h @@ -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; |