struct ethsw_core *ethsw = port_priv->ethsw_data;
        struct net_device *netdev = port_priv->netdev;
        struct dpsw_tci_cfg tci_cfg = { 0 };
-       bool is_oper;
+       bool up;
        int err, ret;
 
        err = dpsw_if_get_tci(ethsw->mc_io, 0, ethsw->dpsw_handle,
        tci_cfg.vlan_id = pvid;
 
        /* Interface needs to be down to change PVID */
-       is_oper = netif_oper_up(netdev);
-       if (is_oper) {
+       up = netif_running(netdev);
+       if (up) {
                err = dpsw_if_disable(ethsw->mc_io, 0,
                                      ethsw->dpsw_handle,
                                      port_priv->idx);
        port_priv->pvid = pvid;
 
 set_tci_error:
-       if (is_oper) {
+       if (up) {
                ret = dpsw_if_enable(ethsw->mc_io, 0,
                                     ethsw->dpsw_handle,
                                     port_priv->idx);
        };
        int err;
 
-       if (!netif_oper_up(port_priv->netdev) || state == port_priv->stp_state)
+       if (!netif_running(port_priv->netdev) || state == port_priv->stp_state)
                return 0;       /* Nothing to do */
 
        err = dpsw_if_set_stp(port_priv->ethsw_data->mc_io, 0,