summaryrefslogtreecommitdiff
path: root/drivers/extcon
diff options
context:
space:
mode:
authorChanwoo Choi <cw00.choi@samsung.com>2016-06-27 19:17:06 +0900
committerHuang, Tao <huangtao@rock-chips.com>2016-08-03 09:38:19 +0800
commit70eed11ebb463b831590c0a8f7c4a96bbfbe56e5 (patch)
tree554d30ac465b3b3170076540d3e320683e516e04 /drivers/extcon
parent076907279ace8c14304f6a428ef5c5ed091c24ee (diff)
UPSTREAM: extcon: Move struct extcon_cable from header file to core
This patch moves the struct extcon_cable because that should be only handled by extcon core. There are no reason to publish the internal structure. Change-Id: I7b2e68487ad0ddfa8a2342e7754f16af8623aa58 Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com> Signed-off-by: Chris Zhong <zyw@rock-chips.com> (cherry picked from commit 20f7b53dfc24e0caa984087691af82e442229680)
Diffstat (limited to 'drivers/extcon')
-rw-r--r--drivers/extcon/extcon.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/drivers/extcon/extcon.c b/drivers/extcon/extcon.c
index 3c3bdc0c2aa9..7538a0ac7eed 100644
--- a/drivers/extcon/extcon.c
+++ b/drivers/extcon/extcon.c
@@ -77,6 +77,26 @@ static const char *extcon_name[] = {
NULL,
};
+/**
+ * struct extcon_cable - An internal data for each cable of extcon device.
+ * @edev: The extcon device
+ * @cable_index: Index of this cable in the edev
+ * @attr_g: Attribute group for the cable
+ * @attr_name: "name" sysfs entry
+ * @attr_state: "state" sysfs entry
+ * @attrs: Array pointing to attr_name and attr_state for attr_g
+ */
+struct extcon_cable {
+ struct extcon_dev *edev;
+ int cable_index;
+
+ struct attribute_group attr_g;
+ struct device_attribute attr_name;
+ struct device_attribute attr_state;
+
+ struct attribute *attrs[3]; /* to be fed to attr_g.attrs */
+};
+
static struct class *extcon_class;
#if defined(CONFIG_ANDROID)
static struct class_compat *switch_class;