The davinci_i2c_platform_data struct is mach-specific but still deserves to be documented using kernel doc. Signed-off-by: Ben Gardiner<bengardiner@xxxxxxxxxxxxxx> Cc: Sekhar Nori <nsekhar@xxxxxx> Cc: Ben Dooks <ben-linux@xxxxxxxxx> --- arch/arm/mach-davinci/include/mach/i2c.h | 17 ++++++++++++----- 1 files changed, 12 insertions(+), 5 deletions(-) diff --git a/arch/arm/mach-davinci/include/mach/i2c.h b/arch/arm/mach-davinci/include/mach/i2c.h index 2312d19..ab07a44 100644 --- a/arch/arm/mach-davinci/include/mach/i2c.h +++ b/arch/arm/mach-davinci/include/mach/i2c.h @@ -12,12 +12,19 @@ #ifndef __ASM_ARCH_I2C_H #define __ASM_ARCH_I2C_H -/* All frequencies are expressed in kHz */ +/** + * davinci_i2c_platform_data - Platform data for I2C master device on DaVinci + * + * @bus_freq: standard bus frequency (kHz) + * @bus_delay: post-transaction delay (usec) + * @sda_pin: GPIO pin ID to use for SDA + * @scl_pin: GPIO pin ID to use for SCL + */ struct davinci_i2c_platform_data { - unsigned int bus_freq; /* standard bus frequency (kHz) */ - unsigned int bus_delay; /* post-transaction delay (usec) */ - unsigned int sda_pin; /* GPIO pin ID to use for SDA */ - unsigned int scl_pin; /* GPIO pin ID to use for SCL */ + unsigned int bus_freq; + unsigned int bus_delay; + unsigned int sda_pin; + unsigned int scl_pin; }; /* for board setup code */ -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe linux-i2c" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html