staging: typec: tcpci: remove unused tcpci_tcpc_config
authorLi Jun <jun.li@nxp.com>
Tue, 26 Jun 2018 23:45:25 +0000 (07:45 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 28 Jun 2018 10:49:47 +0000 (19:49 +0900)
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>
drivers/staging/typec/tcpci.c

index e59547a32605f444bb36b5bb63729b64433d51f9..076498aefd6df99b97285bde0a2109aec754fa72 100644 (file)
@@ -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) {