aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/platform_data
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/platform_data')
-rw-r--r--include/linux/platform_data/wilco-ec.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/platform_data/wilco-ec.h b/include/linux/platform_data/wilco-ec.h
index 5344975afa1a..446473a46b88 100644
--- a/include/linux/platform_data/wilco-ec.h
+++ b/include/linux/platform_data/wilco-ec.h
@@ -35,6 +35,7 @@
35 * is used to hold the request and the response. 35 * is used to hold the request and the response.
36 * @data_size: Size of the data buffer used for EC communication. 36 * @data_size: Size of the data buffer used for EC communication.
37 * @debugfs_pdev: The child platform_device used by the debugfs sub-driver. 37 * @debugfs_pdev: The child platform_device used by the debugfs sub-driver.
38 * @rtc_pdev: The child platform_device used by the RTC sub-driver.
38 */ 39 */
39struct wilco_ec_device { 40struct wilco_ec_device {
40 struct device *dev; 41 struct device *dev;
@@ -45,6 +46,7 @@ struct wilco_ec_device {
45 void *data_buffer; 46 void *data_buffer;
46 size_t data_size; 47 size_t data_size;
47 struct platform_device *debugfs_pdev; 48 struct platform_device *debugfs_pdev;
49 struct platform_device *rtc_pdev;
48}; 50};
49 51
50/** 52/**