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 0feb4b520a54..5344975afa1a 100644
--- a/include/linux/platform_data/wilco-ec.h
+++ b/include/linux/platform_data/wilco-ec.h
@@ -34,6 +34,7 @@
34 * @data_buffer: Buffer used for EC communication. The same buffer 34 * @data_buffer: Buffer used for EC communication. The same buffer
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 */ 38 */
38struct wilco_ec_device { 39struct wilco_ec_device {
39 struct device *dev; 40 struct device *dev;
@@ -43,6 +44,7 @@ struct wilco_ec_device {
43 struct resource *io_packet; 44 struct resource *io_packet;
44 void *data_buffer; 45 void *data_buffer;
45 size_t data_size; 46 size_t data_size;
47 struct platform_device *debugfs_pdev;
46}; 48};
47 49
48/** 50/**