]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
usb: typec: tcpm: Remove unused functions
authorGuenter Roeck <linux@roeck-us.net>
Tue, 12 Feb 2019 15:58:17 +0000 (07:58 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 13 Feb 2019 18:40:20 +0000 (19:40 +0100)
tcpm_update_source_capabilities() and tcpm_update_sink_capabilities()
are not used anywhere, and I don't recall why I introduced those functions
in the first place. Effectively that means that we don't know if they even
work, or ever did. Lets remove them.

Reported-by: Kyle Tso <kyletso@google.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Acked-by: Kyle Tso <kyletso@google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/typec/tcpm/tcpm.c
include/linux/usb/tcpm.h

index 8f2af348bda5fe29e677d9062bb57b6f970809f2..0f62db091d8dab59416fb70af97a44a127503d05 100644 (file)
@@ -4435,66 +4435,6 @@ static int tcpm_fw_get_caps(struct tcpm_port *port,
        return 0;
 }
 
-int tcpm_update_source_capabilities(struct tcpm_port *port, const u32 *pdo,
-                                   unsigned int nr_pdo)
-{
-       if (tcpm_validate_caps(port, pdo, nr_pdo))
-               return -EINVAL;
-
-       mutex_lock(&port->lock);
-       port->nr_src_pdo = tcpm_copy_pdos(port->src_pdo, pdo, nr_pdo);
-       switch (port->state) {
-       case SRC_UNATTACHED:
-       case SRC_ATTACH_WAIT:
-       case SRC_TRYWAIT:
-               tcpm_set_cc(port, tcpm_rp_cc(port));
-               break;
-       case SRC_SEND_CAPABILITIES:
-       case SRC_NEGOTIATE_CAPABILITIES:
-       case SRC_READY:
-       case SRC_WAIT_NEW_CAPABILITIES:
-               tcpm_set_cc(port, tcpm_rp_cc(port));
-               tcpm_set_state(port, SRC_SEND_CAPABILITIES, 0);
-               break;
-       default:
-               break;
-       }
-       mutex_unlock(&port->lock);
-       return 0;
-}
-EXPORT_SYMBOL_GPL(tcpm_update_source_capabilities);
-
-int tcpm_update_sink_capabilities(struct tcpm_port *port, const u32 *pdo,
-                                 unsigned int nr_pdo,
-                                 unsigned int operating_snk_mw)
-{
-       if (tcpm_validate_caps(port, pdo, nr_pdo))
-               return -EINVAL;
-
-       mutex_lock(&port->lock);
-       port->nr_snk_pdo = tcpm_copy_pdos(port->snk_pdo, pdo, nr_pdo);
-       port->operating_snk_mw = operating_snk_mw;
-       port->update_sink_caps = true;
-
-       switch (port->state) {
-       case SNK_NEGOTIATE_CAPABILITIES:
-       case SNK_NEGOTIATE_PPS_CAPABILITIES:
-       case SNK_READY:
-       case SNK_TRANSITION_SINK:
-       case SNK_TRANSITION_SINK_VBUS:
-               if (port->pps_data.active)
-                       tcpm_set_state(port, SNK_NEGOTIATE_PPS_CAPABILITIES, 0);
-               else
-                       tcpm_set_state(port, SNK_NEGOTIATE_CAPABILITIES, 0);
-               break;
-       default:
-               break;
-       }
-       mutex_unlock(&port->lock);
-       return 0;
-}
-EXPORT_SYMBOL_GPL(tcpm_update_sink_capabilities);
-
 /* Power Supply access to expose source power information */
 enum tcpm_psy_online_states {
        TCPM_PSY_OFFLINE = 0,
index 50c74a77db55c435af06e83833ca1271c263d6fd..0c532ca3f07954cecb3b864da1507a7743b18c3f 100644 (file)
@@ -159,12 +159,6 @@ struct tcpm_port;
 struct tcpm_port *tcpm_register_port(struct device *dev, struct tcpc_dev *tcpc);
 void tcpm_unregister_port(struct tcpm_port *port);
 
-int tcpm_update_source_capabilities(struct tcpm_port *port, const u32 *pdo,
-                                   unsigned int nr_pdo);
-int tcpm_update_sink_capabilities(struct tcpm_port *port, const u32 *pdo,
-                                 unsigned int nr_pdo,
-                                 unsigned int operating_snk_mw);
-
 void tcpm_vbus_change(struct tcpm_port *port);
 void tcpm_cc_change(struct tcpm_port *port);
 void tcpm_pd_receive(struct tcpm_port *port,