int ret;
 
        if (!ena_com_check_supported_feature_id(ena_dev, feature_id)) {
-               pr_info("Feature %d isn't supported\n", feature_id);
+               pr_debug("Feature %d isn't supported\n", feature_id);
                return -EPERM;
        }
 
        comp_ctx = ena_com_submit_admin_cmd(admin_queue, cmd, cmd_size,
                                            comp, comp_size);
        if (unlikely(IS_ERR(comp_ctx))) {
-               pr_err("Failed to submit command [%ld]\n", PTR_ERR(comp_ctx));
+               if (comp_ctx == ERR_PTR(-ENODEV))
+                       pr_debug("Failed to submit command [%ld]\n",
+                                PTR_ERR(comp_ctx));
+               else
+                       pr_err("Failed to submit command [%ld]\n",
+                              PTR_ERR(comp_ctx));
+
                return PTR_ERR(comp_ctx);
        }
 
        int ret;
 
        if (!ena_com_check_supported_feature_id(ena_dev, ENA_ADMIN_MTU)) {
-               pr_info("Feature %d isn't supported\n", ENA_ADMIN_MTU);
+               pr_debug("Feature %d isn't supported\n", ENA_ADMIN_MTU);
                return -EPERM;
        }
 
 
        if (!ena_com_check_supported_feature_id(ena_dev,
                                                ENA_ADMIN_RSS_HASH_FUNCTION)) {
-               pr_info("Feature %d isn't supported\n",
-                       ENA_ADMIN_RSS_HASH_FUNCTION);
+               pr_debug("Feature %d isn't supported\n",
+                        ENA_ADMIN_RSS_HASH_FUNCTION);
                return -EPERM;
        }
 
 
        if (!ena_com_check_supported_feature_id(ena_dev,
                                                ENA_ADMIN_RSS_HASH_INPUT)) {
-               pr_info("Feature %d isn't supported\n", ENA_ADMIN_RSS_HASH_INPUT);
+               pr_debug("Feature %d isn't supported\n",
+                        ENA_ADMIN_RSS_HASH_INPUT);
                return -EPERM;
        }
 
 
        if (!ena_com_check_supported_feature_id(
                    ena_dev, ENA_ADMIN_RSS_REDIRECTION_TABLE_CONFIG)) {
-               pr_info("Feature %d isn't supported\n",
-                       ENA_ADMIN_RSS_REDIRECTION_TABLE_CONFIG);
+               pr_debug("Feature %d isn't supported\n",
+                        ENA_ADMIN_RSS_REDIRECTION_TABLE_CONFIG);
                return -EPERM;
        }
 
 
        if (rc) {
                if (rc == -EPERM) {
-                       pr_info("Feature %d isn't supported\n",
-                               ENA_ADMIN_INTERRUPT_MODERATION);
+                       pr_debug("Feature %d isn't supported\n",
+                                ENA_ADMIN_INTERRUPT_MODERATION);
                        rc = 0;
                } else {
                        pr_err("Failed to get interrupt moderation admin cmd. rc: %d\n",
 
  */
 static void ena_free_tx_bufs(struct ena_ring *tx_ring)
 {
+       bool print_once = true;
        u32 i;
 
        for (i = 0; i < tx_ring->ring_size; i++) {
                if (!tx_info->skb)
                        continue;
 
-               netdev_notice(tx_ring->netdev,
-                             "free uncompleted tx skb qid %d idx 0x%x\n",
-                             tx_ring->qid, i);
+               if (print_once) {
+                       netdev_notice(tx_ring->netdev,
+                                     "free uncompleted tx skb qid %d idx 0x%x\n",
+                                     tx_ring->qid, i);
+                       print_once = false;
+               } else {
+                       netdev_dbg(tx_ring->netdev,
+                                  "free uncompleted tx skb qid %d idx 0x%x\n",
+                                  tx_ring->qid, i);
+               }
 
                ena_buf = tx_info->bufs;
                dma_unmap_single(tx_ring->dev,