unsigned int pcs_state;
 
        bool mac_link_dropped;
-       bool using_mac_select_pcs;
 
        struct sfp_bus *sfp_bus;
        bool sfp_may_have_phy;
        int ret;
 
        /* Get the PCS for this interface mode */
-       if (pl->using_mac_select_pcs) {
+       if (pl->mac_ops->mac_select_pcs) {
                pcs = pl->mac_ops->mac_select_pcs(pl->config, state->interface);
                if (IS_ERR(pcs))
                        return PTR_ERR(pcs);
                                                state->interface,
                                                state->advertising);
 
-       if (pl->using_mac_select_pcs) {
+       if (pl->mac_ops->mac_select_pcs) {
                pcs = pl->mac_ops->mac_select_pcs(pl->config, state->interface);
                if (IS_ERR(pcs)) {
                        phylink_err(pl,
                               phy_interface_t iface,
                               const struct phylink_mac_ops *mac_ops)
 {
-       bool using_mac_select_pcs = false;
        struct phylink *pl;
        int ret;
 
                return ERR_PTR(-EINVAL);
        }
 
-       if (mac_ops->mac_select_pcs &&
-           mac_ops->mac_select_pcs(config, PHY_INTERFACE_MODE_NA) !=
-             ERR_PTR(-EOPNOTSUPP))
-               using_mac_select_pcs = true;
-
        pl = kzalloc(sizeof(*pl), GFP_KERNEL);
        if (!pl)
                return ERR_PTR(-ENOMEM);
                return ERR_PTR(-EINVAL);
        }
 
-       pl->using_mac_select_pcs = using_mac_select_pcs;
        pl->phy_state.interface = iface;
        pl->link_interface = iface;
        if (iface == PHY_INTERFACE_MODE_MOCA)