/* Check Boot Mode */
                val = rd_nvram_byte(ha, addr);
                if (!(val & 0x07)) {
-                       DEBUG2(ql4_printk(KERN_ERR, ha,
-                                         "%s: Failed Boot options : 0x%x\n",
-                                         __func__, val));
+                       DEBUG2(ql4_printk(KERN_INFO, ha, "%s: Adapter boot "
+                                         "options : 0x%x\n", __func__, val));
                        ret = QLA_ERROR;
                        goto exit_boot_info;
                }
                }
                /* Check Boot Mode */
                if (!(buf[1] & 0x07)) {
-                       DEBUG2(ql4_printk(KERN_INFO, ha,
-                                         "Failed: Boot options : 0x%x\n",
-                                         buf[1]));
+                       DEBUG2(ql4_printk(KERN_INFO, ha, "Firmware boot options"
+                                         " : 0x%x\n", buf[1]));
                        ret = QLA_ERROR;
                        goto exit_boot_info_free;
                }
 
        if (qla4xxx_bootdb_by_index(ha, fw_ddb_entry,
                                   fw_ddb_entry_dma, ddb_index)) {
-               DEBUG2(ql4_printk(KERN_ERR, ha,
-                                 "%s: Flash DDB read Failed\n", __func__));
+               DEBUG2(ql4_printk(KERN_INFO, ha, "%s: No Flash DDB found at "
+                                 "index [%d]\n", __func__, ddb_index));
                ret = QLA_ERROR;
                goto exit_boot_target;
        }
        ddb_index[1] = 0xffff;
        ret = get_fw_boot_info(ha, ddb_index);
        if (ret != QLA_SUCCESS) {
-               DEBUG2(ql4_printk(KERN_ERR, ha,
-                                 "%s: Failed to set boot info.\n", __func__));
+               DEBUG2(ql4_printk(KERN_INFO, ha,
+                               "%s: No boot target configured.\n", __func__));
                return ret;
        }
 
        rval = qla4xxx_get_boot_target(ha, &(ha->boot_tgt.boot_pri_sess),
                                      ddb_index[0]);
        if (rval != QLA_SUCCESS) {
-               DEBUG2(ql4_printk(KERN_ERR, ha, "%s: Failed to get "
-                                 "primary target\n", __func__));
+               DEBUG2(ql4_printk(KERN_INFO, ha, "%s: Primary boot target not "
+                                 "configured\n", __func__));
        } else
                ret = QLA_SUCCESS;
 
        rval = qla4xxx_get_boot_target(ha, &(ha->boot_tgt.boot_sec_sess),
                                      ddb_index[1]);
        if (rval != QLA_SUCCESS) {
-               DEBUG2(ql4_printk(KERN_ERR, ha, "%s: Failed to get "
-                                 "secondary target\n", __func__));
+               DEBUG2(ql4_printk(KERN_INFO, ha, "%s: Secondary boot target not"
+                                 " configured\n", __func__));
        } else
                ret = QLA_SUCCESS;