summaryrefslogtreecommitdiff
path: root/drivers/staging/typec
diff options
context:
space:
mode:
authorLi Jun <jun.li@nxp.com>2018-06-27 02:45:25 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-06-28 13:49:47 +0300
commitc2ee5e18652f7ed2bf6e0fbaa374f23cfd406e72 (patch)
treea24e918f85bc1ed57087b7c424829eaf1f1913e0 /drivers/staging/typec
parent96232cbc6c994c6af387c3c6e2a1f121cf5b1a2d (diff)
downloadlinux-c2ee5e18652f7ed2bf6e0fbaa374f23cfd406e72.tar.xz
staging: typec: tcpci: remove unused tcpci_tcpc_config
Since we will use config settings via device properties, so remove the hard code tcpci_tcpc_config. Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com> Signed-off-by: Li Jun <jun.li@nxp.com> Reviewed-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/typec')
-rw-r--r--drivers/staging/typec/tcpci.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/staging/typec/tcpci.c b/drivers/staging/typec/tcpci.c
index e59547a32605..076498aefd6d 100644
--- a/drivers/staging/typec/tcpci.c
+++ b/drivers/staging/typec/tcpci.c
@@ -464,17 +464,10 @@ static const struct regmap_config tcpci_regmap_config = {
.max_register = 0x7F, /* 0x80 .. 0xFF are vendor defined */
};
-static const struct tcpc_config tcpci_tcpc_config = {
- .type = TYPEC_PORT_DFP,
- .default_role = TYPEC_SINK,
-};
-
static int tcpci_parse_config(struct tcpci *tcpci)
{
tcpci->controls_vbus = true; /* XXX */
- /* TODO: Populate struct tcpc_config from ACPI/device-tree */
- tcpci->tcpc.config = &tcpci_tcpc_config;
tcpci->tcpc.fwnode = device_get_named_child_node(tcpci->dev,
"connector");
if (!tcpci->tcpc.fwnode) {