Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

lp8727_charger: Add description of platform data

Add brief description of lp8727_platform_data and lp8727_chg_param.

Signed-off-by: Milo(Woogyom) Kim <milo.kim@ti.com>
Signed-off-by: Anton Vorontsov <anton.vorontsov@linaro.org>

authored by

Kim, Milo and committed by
Anton Vorontsov
9b11adc7 7336880e

+13 -2
+13 -2
include/linux/lp8727.h
··· 35 35 ICHG_1000mA, 36 36 }; 37 37 38 + /** 39 + * struct lp8727_chg_param 40 + * @eoc_level : end of charge level setting 41 + * @ichg : charging current 42 + */ 38 43 struct lp8727_chg_param { 39 - /* end of charge level setting */ 40 44 enum lp8727_eoc_level eoc_level; 41 - /* charging current */ 42 45 enum lp8727_ichg ichg; 43 46 }; 44 47 48 + /** 49 + * struct lp8727_platform_data 50 + * @get_batt_present : check battery status - exists or not 51 + * @get_batt_level : get battery voltage (mV) 52 + * @get_batt_capacity : get battery capacity (%) 53 + * @get_batt_temp : get battery temperature 54 + * @ac, @usb : charging parameters each charger type 55 + */ 45 56 struct lp8727_platform_data { 46 57 u8 (*get_batt_present)(void); 47 58 u16 (*get_batt_level)(void);