dp->hpd_state = ST_CONNECT_PENDING;
 
-       hpd->hpd_high = 1;
-
        ret = dp_display_usbpd_configure_cb(&dp->pdev->dev);
        if (ret) {      /* link train failed */
-               hpd->hpd_high = 0;
                dp->hpd_state = ST_DISCONNECTED;
 
                if (ret == -ECONNRESET) { /* cable unplugged */
                /* triggered by irq_hdp with sink_count = 0 */
                if (dp->link->sink_count == 0) {
                        dp_ctrl_off_phy(dp->ctrl);
-                       hpd->hpd_high = 0;
                        dp->core_initialized = false;
                }
                mutex_unlock(&dp->event_mutex);
        /* disable HPD plug interrupts */
        dp_catalog_hpd_config_intr(dp->catalog, DP_DP_HPD_PLUG_INT_MASK, false);
 
-       hpd->hpd_high = 0;
-
        /*
         * We don't need separate work for disconnect as
         * connect/attention interrupts are disabled
 
        hpd_priv = container_of(dp_usbpd, struct dp_hpd_private,
                                        dp_usbpd);
 
-       dp_usbpd->hpd_high = hpd;
-
        if (!hpd_priv->dp_cb || !hpd_priv->dp_cb->configure
                                || !hpd_priv->dp_cb->disconnect) {
                pr_err("hpd dp_cb not initialized\n");
 
  * @multi_func: multi-function preferred
  * @usb_config_req: request to switch to usb
  * @exit_dp_mode: request exit from displayport mode
- * @hpd_high: Hot Plug Detect signal is high.
  * @hpd_irq: Change in the status since last message
  * @alt_mode_cfg_done: bool to specify alt mode status
  * @debug_en: bool to specify debug mode
        bool multi_func;
        bool usb_config_req;
        bool exit_dp_mode;
-       bool hpd_high;
        bool hpd_irq;
        bool alt_mode_cfg_done;
        bool debug_en;