]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
regmap: Fix kerneldoc errors for regmap
authorMark Brown <broonie@opensource.wolfsonmicro.com>
Tue, 9 Aug 2011 01:23:22 +0000 (10:23 +0900)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Tue, 9 Aug 2011 01:25:06 +0000 (10:25 +0900)
Field names didn't match between the documentation and the code.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
include/linux/regmap.h

index c878a4bf717e17cb15a9f9906edaf10c905ec5f9..4de137bc16a77adca41db6e0c8f35432927f996e 100644 (file)
@@ -27,15 +27,15 @@ struct spi_device;
  * @val_bits: Number of bits in a register value, mandatory.
  *
  * @max_register: Optional, specifies the maximum valid register index.
- * @writeable_register: Optional callback returning true if the register
- *                      can be written to.
- * @readable_register: Optional callback returning true if the register
- *                     can be read from.
- * @volatile_register: Optional callback returning true if the register
- *                     value can't be cached.
- * @precious_register: Optional callback returning true if the rgister
- *                     should not be read outside of a call from the driver
- *                     (eg, a clear on read interrupt status register).
+ * @writeable_reg: Optional callback returning true if the register
+ *                 can be written to.
+ * @readable_reg: Optional callback returning true if the register
+ *                can be read from.
+ * @volatile_reg: Optional callback returning true if the register
+ *                value can't be cached.
+ * @precious_reg: Optional callback returning true if the rgister
+ *                should not be read outside of a call from the driver
+ *                (eg, a clear on read interrupt status register).
  */
 struct regmap_config {
        int reg_bits;