SE_DEBUG(DBG_LVL_8, "In beiscsi_session_create\n");
 
        if (!ep) {
-               SE_DEBUG(DBG_LVL_1, "beiscsi_session_create: invalid ep \n");
+               SE_DEBUG(DBG_LVL_1, "beiscsi_session_create: invalid ep\n");
                return NULL;
        }
        beiscsi_ep = ep->dd_data;
                         "Connection table already occupied. Detected clash\n");
                return -EINVAL;
        } else {
-               SE_DEBUG(DBG_LVL_8, "phba->conn_table[%d]=%p(beiscsi_conn) \n",
+               SE_DEBUG(DBG_LVL_8, "phba->conn_table[%d]=%p(beiscsi_conn)\n",
                         cid, beiscsi_conn);
                phba->conn_table[cid] = beiscsi_conn;
        }
 
        if (beiscsi_ep->phba != phba) {
                SE_DEBUG(DBG_LVL_8,
-                        "beiscsi_ep->hba=%p not equal to phba=%p \n",
+                        "beiscsi_ep->hba=%p not equal to phba=%p\n",
                         beiscsi_ep->phba, phba);
                return -EEXIST;
        }
        beiscsi_conn->beiscsi_conn_cid = beiscsi_ep->ep_cid;
        beiscsi_conn->ep = beiscsi_ep;
        beiscsi_ep->conn = beiscsi_conn;
-       SE_DEBUG(DBG_LVL_8, "beiscsi_conn=%p conn=%p ep_cid=%d \n",
+       SE_DEBUG(DBG_LVL_8, "beiscsi_conn=%p conn=%p ep_cid=%d\n",
                 beiscsi_conn, conn, beiscsi_ep->ep_cid);
        return beiscsi_bindconn_cid(phba, beiscsi_conn, beiscsi_ep->ep_cid);
 }
        case ISCSI_HOST_PARAM_HWADDRESS:
                tag = be_cmd_get_mac_addr(phba);
                if (!tag) {
-                       SE_DEBUG(DBG_LVL_1, "be_cmd_get_mac_addr Failed \n");
+                       SE_DEBUG(DBG_LVL_1, "be_cmd_get_mac_addr Failed\n");
                        return -1;
                } else
                        wait_event_interruptible(phba->ctrl.mcc_wait[tag],
                status = phba->ctrl.mcc_numtag[tag] & 0x000000FF;
                if (status || extd_status) {
                        SE_DEBUG(DBG_LVL_1, "be_cmd_get_mac_addr Failed"
-                                           " status = %d extd_status = %d \n",
+                                           " status = %d extd_status = %d\n",
                                            status, extd_status);
                        free_mcc_tag(&phba->ctrl, tag);
                        return -1;
                SE_DEBUG(DBG_LVL_1, "No free cid available\n");
                return ret;
        }
-       SE_DEBUG(DBG_LVL_8, "In beiscsi_open_conn, ep_cid=%d ",
+       SE_DEBUG(DBG_LVL_8, "In beiscsi_open_conn, ep_cid=%d\n",
                 beiscsi_ep->ep_cid);
        phba->ep_array[beiscsi_ep->ep_cid -
                       phba->fw_config.iscsi_cid_start] = ep;
        tag = mgmt_open_connection(phba, dst_addr, beiscsi_ep);
        if (!tag) {
                SE_DEBUG(DBG_LVL_1,
-                        "mgmt_open_connection Failed for cid=%d \n",
+                        "mgmt_open_connection Failed for cid=%d\n",
                         beiscsi_ep->ep_cid);
        } else {
                wait_event_interruptible(phba->ctrl.mcc_wait[tag],
                wrb = queue_get_wrb(mccq, wrb_num);
                free_mcc_tag(&phba->ctrl, tag);
 
-               ptcpcnct_out =  embedded_payload(wrb);
+               ptcpcnct_out = embedded_payload(wrb);
                beiscsi_ep = ep->dd_data;
                beiscsi_ep->fw_handle = ptcpcnct_out->connection_handle;
                beiscsi_ep->cid_vld = 1;
        struct iscsi_endpoint *ep;
        int ret;
 
-       SE_DEBUG(DBG_LVL_8, "In beiscsi_ep_connect \n");
+       SE_DEBUG(DBG_LVL_8, "In beiscsi_ep_connect\n");
        if (shost)
                phba = iscsi_host_priv(shost);
        else {
                ret = -ENXIO;
-               SE_DEBUG(DBG_LVL_1, "shost is NULL \n");
+               SE_DEBUG(DBG_LVL_1, "shost is NULL\n");
                return ERR_PTR(ret);
        }
 
        if (phba->state != BE_ADAPTER_UP) {
                ret = -EBUSY;
-               SE_DEBUG(DBG_LVL_1, "The Adapter state is Not UP \n");
+               SE_DEBUG(DBG_LVL_1, "The Adapter state is Not UP\n");
                return ERR_PTR(ret);
        }
 
        beiscsi_ep->phba = phba;
        beiscsi_ep->openiscsi_ep = ep;
        if (beiscsi_open_conn(ep, NULL, dst_addr, non_blocking)) {
-               SE_DEBUG(DBG_LVL_1, "Failed in beiscsi_open_conn \n");
+               SE_DEBUG(DBG_LVL_1, "Failed in beiscsi_open_conn\n");
                ret = -ENOMEM;
                goto free_ep;
        }
 
        tag = mgmt_upload_connection(phba, beiscsi_ep->ep_cid, flag);
        if (!tag) {
-               SE_DEBUG(DBG_LVL_8, "upload failed for cid 0x%x",
+               SE_DEBUG(DBG_LVL_8, "upload failed for cid 0x%x\n",
                         beiscsi_ep->ep_cid);
                ret = -1;
        } else {
        if (phba->conn_table[cid])
                phba->conn_table[cid] = NULL;
        else {
-               SE_DEBUG(DBG_LVL_8, "Connection table Not occupied. \n");
+               SE_DEBUG(DBG_LVL_8, "Connection table Not occupied.\n");
                return -EINVAL;
        }
        return 0;
                                            savecfg_flag);
        if (!tag) {
                SE_DEBUG(DBG_LVL_1,
-                        "mgmt_invalidate_connection Failed for cid=%d \n",
+                        "mgmt_invalidate_connection Failed for cid=%d\n",
                          beiscsi_ep->ep_cid);
        } else {
                wait_event_interruptible(phba->ctrl.mcc_wait[tag],
 
        shost = iscsi_host_alloc(&beiscsi_sht, sizeof(*phba), 0);
        if (!shost) {
                dev_err(&pcidev->dev, "beiscsi_hba_alloc -"
-                       "iscsi_host_alloc failed \n");
+                       "iscsi_host_alloc failed\n");
                return NULL;
        }
        shost->dma_boundary = pcidev->dma_mask;
                                    + BE2_TMFS) / 512) + 1) * 512;
        phba->params.num_eq_entries = (phba->params.num_eq_entries < 1024)
                                ? 1024 : phba->params.num_eq_entries;
-       SE_DEBUG(DBG_LVL_8, "phba->params.num_eq_entries=%d \n",
+       SE_DEBUG(DBG_LVL_8, "phba->params.num_eq_entries=%d\n",
                             phba->params.num_eq_entries);
        phba->params.num_cq_entries =
            (((BE2_CMDS_PER_CXN * 2 +  phba->fw_config.iscsi_cid_count * 2
                break;
        default:
                shost_printk(KERN_WARNING, phba->shost,
-                            "Unrecognized opcode 0x%x in async msg \n",
+                            "Unrecognized opcode 0x%x in async msg\n",
                             (ppdu->
                             dw[offsetof(struct amap_pdu_base, opcode) / 32]
                                                & PDUBASE_OPCODE_MASK));
 
        if (phba->io_sgl_hndl_avbl) {
                SE_DEBUG(DBG_LVL_8,
-                        "In alloc_io_sgl_handle,io_sgl_alloc_index=%d \n",
+                        "In alloc_io_sgl_handle,io_sgl_alloc_index=%d\n",
                         phba->io_sgl_alloc_index);
                psgl_handle = phba->io_sgl_hndl_base[phba->
                                                io_sgl_alloc_index];
 static void
 free_io_sgl_handle(struct beiscsi_hba *phba, struct sgl_handle *psgl_handle)
 {
-       SE_DEBUG(DBG_LVL_8, "In free_,io_sgl_free_index=%d \n",
+       SE_DEBUG(DBG_LVL_8, "In free_,io_sgl_free_index=%d\n",
                 phba->io_sgl_free_index);
        if (phba->io_sgl_hndl_base[phba->io_sgl_free_index]) {
                /*
                 */
                 SE_DEBUG(DBG_LVL_8,
                         "Double Free in IO SGL io_sgl_free_index=%d,"
-                        "value there=%p \n", phba->io_sgl_free_index,
+                        "value there=%p\n", phba->io_sgl_free_index,
                         phba->io_sgl_hndl_base[phba->io_sgl_free_index]);
                return;
        }
 
        SE_DEBUG(DBG_LVL_8,
                 "FREE WRB: pwrb_handle=%p free_index=0x%x"
-                "wrb_handles_available=%d \n",
+                "wrb_handles_available=%d\n",
                 pwrb_handle, pwrb_context->free_index,
                 pwrb_context->wrb_handles_available);
 }
        if (phba->eh_sgl_hndl_avbl) {
                psgl_handle = phba->eh_sgl_hndl_base[phba->eh_sgl_alloc_index];
                phba->eh_sgl_hndl_base[phba->eh_sgl_alloc_index] = NULL;
-               SE_DEBUG(DBG_LVL_8, "mgmt_sgl_alloc_index=%d=0x%x \n",
+               SE_DEBUG(DBG_LVL_8, "mgmt_sgl_alloc_index=%d=0x%x\n",
                         phba->eh_sgl_alloc_index, phba->eh_sgl_alloc_index);
                phba->eh_sgl_hndl_avbl--;
                if (phba->eh_sgl_alloc_index ==
 free_mgmt_sgl_handle(struct beiscsi_hba *phba, struct sgl_handle *psgl_handle)
 {
 
-       SE_DEBUG(DBG_LVL_8, "In  free_mgmt_sgl_handle,eh_sgl_free_index=%d \n",
+       SE_DEBUG(DBG_LVL_8, "In  free_mgmt_sgl_handle,eh_sgl_free_index=%d\n",
                             phba->eh_sgl_free_index);
        if (phba->eh_sgl_hndl_base[phba->eh_sgl_free_index]) {
                /*
                 * failed in xmit_task or alloc_pdu.
                 */
                SE_DEBUG(DBG_LVL_8,
-                        "Double Free in eh SGL ,eh_sgl_free_index=%d \n",
+                        "Double Free in eh SGL ,eh_sgl_free_index=%d\n",
                         phba->eh_sgl_free_index);
                return;
        }
        case HWH_TYPE_LOGIN:
                SE_DEBUG(DBG_LVL_1,
                         "\t\t No HWH_TYPE_LOGIN Expected in hwi_complete_cmd"
-                        "- Solicited path \n");
+                        "- Solicited path\n");
                break;
 
        case HWH_TYPE_NOP:
        default:
                pbusy_list = NULL;
                shost_printk(KERN_WARNING, phba->shost,
-                       "Unexpected code=%d \n",
+                       "Unexpected code=%d\n",
                         pdpdu_cqe->dw[offsetof(struct amap_i_t_dpdu_cqe,
                                        code) / 32] & PDUCQE_CODE_MASK);
                return NULL;
                        else
                                SE_DEBUG(DBG_LVL_1,
                                        " Unsupported Async Event, flags"
-                                       " = 0x%08x \n", mcc_compl->flags);
+                                       " = 0x%08x\n", mcc_compl->flags);
                } else if (mcc_compl->flags & CQE_FLAGS_COMPLETED_MASK) {
                        be_mcc_compl_process_isr(&phba->ctrl, mcc_compl);
                        atomic_dec(&phba->ctrl.mcc_obj.q.used);
                        hwi_complete_cmd(beiscsi_conn, phba, sol);
                        break;
                case DRIVERMSG_NOTIFY:
-                       SE_DEBUG(DBG_LVL_8, "Received DRIVERMSG_NOTIFY \n");
+                       SE_DEBUG(DBG_LVL_8, "Received DRIVERMSG_NOTIFY\n");
                        dmsg = (struct dmsg_cqe *)sol;
                        hwi_complete_drvr_msgs(beiscsi_conn, phba, sol);
                        break;
                        sg_len = sg_dma_len(sg);
                        addr = (u64) sg_dma_address(sg);
                        AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_addr_lo, pwrb,
-                                                       (addr & 0xFFFFFFFF));
+                                               ((u32)(addr & 0xFFFFFFFF)));
                        AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_addr_hi, pwrb,
-                                                       (addr >> 32));
+                                                       ((u32)(addr >> 32)));
                        AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_len, pwrb,
                                                        sg_len);
                        sge_len = sg_len;
                        sg_len = sg_dma_len(sg);
                        addr = (u64) sg_dma_address(sg);
                        AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_addr_lo, pwrb,
-                                                       (addr & 0xFFFFFFFF));
+                                               ((u32)(addr & 0xFFFFFFFF)));
                        AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_addr_hi, pwrb,
-                                                       (addr >> 32));
+                                                       ((u32)(addr >> 32)));
                        AMAP_SET_BITS(struct amap_iscsi_wrb, sge1_len, pwrb,
                                                        sg_len);
                }
                        addr = 0;
                }
                AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_addr_lo, pwrb,
-                                               (addr & 0xFFFFFFFF));
+                                               ((u32)(addr & 0xFFFFFFFF)));
                AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_addr_hi, pwrb,
-                                               (addr >> 32));
+                                               ((u32)(addr >> 32)));
                AMAP_SET_BITS(struct amap_iscsi_wrb, sge0_len, pwrb,
                                                task->data_count);
 
                psgl++;
                if (task->data) {
                        AMAP_SET_BITS(struct amap_iscsi_sge, addr_lo, psgl,
-                                               (addr & 0xFFFFFFFF));
+                                               ((u32)(addr & 0xFFFFFFFF)));
                        AMAP_SET_BITS(struct amap_iscsi_sge, addr_hi, psgl,
-                                               (addr >> 32));
+                                               ((u32)(addr >> 32)));
                }
                AMAP_SET_BITS(struct amap_iscsi_sge, len, psgl, 0x106);
        }
                                            mem_descr->mem_array[j - 1].size,
                                            mem_descr->mem_array[j - 1].
                                            virtual_address,
-                                           mem_descr->mem_array[j - 1].
+                                           (unsigned long)mem_descr->
+                                           mem_array[j - 1].
                                            bus_address.u.a64.address);
                }
                if (i) {
        if (mem_descr->mem_array[0].virtual_address) {
                SE_DEBUG(DBG_LVL_8,
                         "hwi_init_async_pdu_ctx HWI_MEM_ASYNC_HEADER_BUF"
-                        "va=%p \n", mem_descr->mem_array[0].virtual_address);
+                        "va=%p\n", mem_descr->mem_array[0].virtual_address);
        } else
                shost_printk(KERN_WARNING, phba->shost,
-                            "No Virtual address \n");
+                            "No Virtual address\n");
 
        pasync_ctx->async_header.va_base =
                        mem_descr->mem_array[0].virtual_address;
        if (mem_descr->mem_array[0].virtual_address) {
                SE_DEBUG(DBG_LVL_8,
                         "hwi_init_async_pdu_ctx HWI_MEM_ASYNC_HEADER_RING"
-                        "va=%p \n", mem_descr->mem_array[0].virtual_address);
+                        "va=%p\n", mem_descr->mem_array[0].virtual_address);
        } else
                shost_printk(KERN_WARNING, phba->shost,
-                           "No Virtual address \n");
+                           "No Virtual address\n");
        pasync_ctx->async_header.ring_base =
                        mem_descr->mem_array[0].virtual_address;
 
        if (mem_descr->mem_array[0].virtual_address) {
                SE_DEBUG(DBG_LVL_8,
                         "hwi_init_async_pdu_ctx HWI_MEM_ASYNC_HEADER_HANDLE"
-                        "va=%p \n", mem_descr->mem_array[0].virtual_address);
+                        "va=%p\n", mem_descr->mem_array[0].virtual_address);
        } else
                shost_printk(KERN_WARNING, phba->shost,
-                           "No Virtual address \n");
+                           "No Virtual address\n");
 
        pasync_ctx->async_header.handle_base =
                        mem_descr->mem_array[0].virtual_address;
        if (mem_descr->mem_array[0].virtual_address) {
                SE_DEBUG(DBG_LVL_8,
                         "hwi_init_async_pdu_ctx HWI_MEM_ASYNC_DATA_BUF"
-                        "va=%p \n", mem_descr->mem_array[0].virtual_address);
+                        "va=%p\n", mem_descr->mem_array[0].virtual_address);
        } else
                shost_printk(KERN_WARNING, phba->shost,
-                           "No Virtual address \n");
+                           "No Virtual address\n");
        pasync_ctx->async_data.va_base =
                        mem_descr->mem_array[0].virtual_address;
        pasync_ctx->async_data.pa_base.u.a64.address =
        if (mem_descr->mem_array[0].virtual_address) {
                SE_DEBUG(DBG_LVL_8,
                         "hwi_init_async_pdu_ctx HWI_MEM_ASYNC_DATA_RING"
-                        "va=%p \n", mem_descr->mem_array[0].virtual_address);
+                        "va=%p\n", mem_descr->mem_array[0].virtual_address);
        } else
                shost_printk(KERN_WARNING, phba->shost,
-                            "No Virtual address \n");
+                            "No Virtual address\n");
 
        pasync_ctx->async_data.ring_base =
                        mem_descr->mem_array[0].virtual_address;
        mem_descr += HWI_MEM_ASYNC_DATA_HANDLE;
        if (!mem_descr->mem_array[0].virtual_address)
                shost_printk(KERN_WARNING, phba->shost,
-                           "No Virtual address \n");
+                           "No Virtual address\n");
 
        pasync_ctx->async_data.handle_base =
                        mem_descr->mem_array[0].virtual_address;
        WARN_ON(!sgl);
 
        sgl->va = virtual_address;
-       sgl->dma = physical_address;
+       sgl->dma = (unsigned long)physical_address;
        sgl->size = length;
 
        return 0;
                                    sizeof(struct be_eq_entry), eq_vaddress);
                if (ret) {
                        shost_printk(KERN_ERR, phba->shost,
-                                    "be_fill_queue Failed for EQ \n");
+                                    "be_fill_queue Failed for EQ\n");
                        goto create_eq_error;
                }
 
                if (ret) {
                        shost_printk(KERN_ERR, phba->shost,
                                     "beiscsi_cmd_eq_create"
-                                    "Failedfor EQ \n");
+                                    "Failedfor EQ\n");
                        goto create_eq_error;
                }
                SE_DEBUG(DBG_LVL_8, "eqid = %d\n", phwi_context->be_eq[i].q.id);
                                    sizeof(struct sol_cqe), cq_vaddress);
                if (ret) {
                        shost_printk(KERN_ERR, phba->shost,
-                                    "be_fill_queue Failed for ISCSI CQ \n");
+                                    "be_fill_queue Failed for ISCSI CQ\n");
                        goto create_cq_error;
                }
 
                if (ret) {
                        shost_printk(KERN_ERR, phba->shost,
                                     "beiscsi_cmd_eq_create"
-                                    "Failed for ISCSI CQ \n");
+                                    "Failed for ISCSI CQ\n");
                        goto create_cq_error;
                }
                SE_DEBUG(DBG_LVL_8, "iscsi cq_id is %d for eq_id %d\n",
                             "be_fill_queue Failed for DEF PDU HDR\n");
                return ret;
        }
-       mem->dma = mem_descr->mem_array[idx].bus_address.u.a64.address;
+       mem->dma = (unsigned long)mem_descr->mem_array[idx].
+                                 bus_address.u.a64.address;
        ret = be_cmd_create_default_pdu_queue(&phba->ctrl, cq, dq,
                                              def_pdu_ring_sz,
                                              phba->params.defpdu_hdr_sz);
                             "be_fill_queue Failed for DEF PDU DATA\n");
                return ret;
        }
-       mem->dma = mem_descr->mem_array[idx].bus_address.u.a64.address;
+       mem->dma = (unsigned long)mem_descr->mem_array[idx].
+                                 bus_address.u.a64.address;
        ret = be_cmd_create_default_pdu_queue(&phba->ctrl, cq, dataq,
                                              def_pdu_ring_sz,
                                              phba->params.defpdu_data_sz);
        SE_DEBUG(DBG_LVL_8, "iscsi def data id is %d\n",
                 phwi_context->be_def_dataq.id);
        hwi_post_async_buffers(phba, 0);
-       SE_DEBUG(DBG_LVL_8, "DEFAULT PDU DATA RING CREATED \n");
+       SE_DEBUG(DBG_LVL_8, "DEFAULT PDU DATA RING CREATED\n");
        return 0;
 }
 
                }
                pm_arr++;
        }
-       SE_DEBUG(DBG_LVL_8, "POSTED PAGES \n");
+       SE_DEBUG(DBG_LVL_8, "POSTED PAGES\n");
        return 0;
 }
 
        if (num_cpus >= MAX_CPUS)
                num_cpus = MAX_CPUS - 1;
 
-       SE_DEBUG(DBG_LVL_8, "num_cpus = %d \n", num_cpus);
+       SE_DEBUG(DBG_LVL_8, "num_cpus = %d\n", num_cpus);
        return num_cpus;
 }
 
 
        status = beiscsi_create_eqs(phba, phwi_context);
        if (status != 0) {
-               shost_printk(KERN_ERR, phba->shost, "EQ not created \n");
+               shost_printk(KERN_ERR, phba->shost, "EQ not created\n");
                goto error;
        }
 
        status = mgmt_check_supported_fw(ctrl, phba);
        if (status != 0) {
                shost_printk(KERN_ERR, phba->shost,
-                            "Unsupported fw version \n");
+                            "Unsupported fw version\n");
                goto error;
        }
 
        if (1 == phba->init_mem[HWI_MEM_ADDN_CONTEXT].num_elements) {
                phwi_ctrlr->phwi_ctxt = (struct hwi_context_memory *)phba->
                    init_mem[HWI_MEM_ADDN_CONTEXT].mem_array[0].virtual_address;
-               SE_DEBUG(DBG_LVL_8, " phwi_ctrlr->phwi_ctxt=%p \n",
+               SE_DEBUG(DBG_LVL_8, " phwi_ctrlr->phwi_ctxt=%p\n",
                         phwi_ctrlr->phwi_ctxt);
        } else {
                shost_printk(KERN_ERR, phba->shost,
                        pci_free_consistent(phba->pcidev,
                          mem_descr->mem_array[j - 1].size,
                          mem_descr->mem_array[j - 1].virtual_address,
-                         mem_descr->mem_array[j - 1].bus_address.
-                               u.a64.address);
+                         (unsigned long)mem_descr->mem_array[j - 1].
+                         bus_address.u.a64.address);
                }
                kfree(mem_descr->mem_array);
                mem_descr++;
        ret = beiscsi_get_memory(phba);
        if (ret < 0) {
                shost_printk(KERN_ERR, phba->shost, "beiscsi_dev_probe -"
-                            "Failed in beiscsi_alloc_memory \n");
+                            "Failed in beiscsi_alloc_memory\n");
                return ret;
        }
 
        }
        SE_DEBUG(DBG_LVL_8,
                 "phba->io_sgl_hndl_avbl=%d"
-                "phba->eh_sgl_hndl_avbl=%d \n",
+                "phba->eh_sgl_hndl_avbl=%d\n",
                 phba->io_sgl_hndl_avbl,
                 phba->eh_sgl_hndl_avbl);
        mem_descr_sg = phba->init_mem;
        mem_descr_sg += HWI_MEM_SGE;
-       SE_DEBUG(DBG_LVL_8, "\n mem_descr_sg->num_elements=%d \n",
+       SE_DEBUG(DBG_LVL_8, "\n mem_descr_sg->num_elements=%d\n",
                 mem_descr_sg->num_elements);
        arr_index = 0;
        idx = 0;
        if (!phba->ep_array) {
                shost_printk(KERN_ERR, phba->shost,
                             "Failed to allocate memory in "
-                            "hba_setup_cid_tbls \n");
+                            "hba_setup_cid_tbls\n");
                kfree(phba->cid_array);
                return -ENOMEM;
        }
        addr = (u8 __iomem *) ((u8 __iomem *) ctrl->pcicfg +
                        PCICFG_MEMBAR_CTRL_INT_CTRL_OFFSET);
        reg = ioread32(addr);
-       SE_DEBUG(DBG_LVL_8, "reg =x%08x \n", reg);
+       SE_DEBUG(DBG_LVL_8, "reg =x%08x\n", reg);
 
        enabled = reg & MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
        if (!enabled) {
                reg |= MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
-               SE_DEBUG(DBG_LVL_8, "reg =x%08x addr=%p \n", reg, addr);
+               SE_DEBUG(DBG_LVL_8, "reg =x%08x addr=%p\n", reg, addr);
                iowrite32(reg, addr);
                if (!phba->msix_enabled) {
                        eq = &phwi_context->be_eq[0].q;
-                       SE_DEBUG(DBG_LVL_8, "eq->id=%d \n", eq->id);
+                       SE_DEBUG(DBG_LVL_8, "eq->id=%d\n", eq->id);
                        hwi_ring_eq_db(phba, eq->id, 0, 0, 1, 1);
                } else {
                        for (i = 0; i <= phba->num_cpus; i++) {
                                eq = &phwi_context->be_eq[i].q;
-                               SE_DEBUG(DBG_LVL_8, "eq->id=%d \n", eq->id);
+                               SE_DEBUG(DBG_LVL_8, "eq->id=%d\n", eq->id);
                                hwi_ring_eq_db(phba, eq->id, 0, 0, 1, 1);
                        }
                }
                iowrite32(reg, addr);
        } else
                shost_printk(KERN_WARNING, phba->shost,
-                            "In hwi_disable_intr, Already Disabled \n");
+                            "In hwi_disable_intr, Already Disabled\n");
 }
 
 static int beiscsi_init_port(struct beiscsi_hba *phba)
        if (ret < 0) {
                shost_printk(KERN_ERR, phba->shost,
                             "beiscsi_dev_probe - Failed in"
-                            "beiscsi_init_controller \n");
+                            "beiscsi_init_controller\n");
                return ret;
        }
        ret = beiscsi_init_sgl_handle(phba);
        if (ret < 0) {
                shost_printk(KERN_ERR, phba->shost,
                             "beiscsi_dev_probe - Failed in"
-                            "beiscsi_init_sgl_handle \n");
+                            "beiscsi_init_sgl_handle\n");
                goto do_cleanup_ctrlr;
        }
 
        mgmt_status = mgmt_epfw_cleanup(phba, CMD_CONNECTION_CHUTE_0);
        if (mgmt_status)
                shost_printk(KERN_WARNING, phba->shost,
-                            "mgmt_epfw_cleanup FAILED \n");
+                            "mgmt_epfw_cleanup FAILED\n");
 
        hwi_purge_eq(phba);
        hwi_cleanup(phba);
        io_task->pwrb_handle = NULL;
        pci_pool_free(beiscsi_sess->bhs_pool, io_task->cmd_bhs,
                      io_task->bhs_pa.u.a64.address);
-       SE_DEBUG(DBG_LVL_1, "Alloc of SGL_ICD Failed \n");
+       SE_DEBUG(DBG_LVL_1, "Alloc of SGL_ICD Failed\n");
        return -ENOMEM;
 }
 
                break;
 
        default:
-               SE_DEBUG(DBG_LVL_1, "opcode =%d Not supported \n",
+               SE_DEBUG(DBG_LVL_1, "opcode =%d Not supported\n",
                         task->hdr->opcode & ISCSI_OPCODE_MASK);
                return -EINVAL;
        }
        sg = scsi_sglist(sc);
        if (sc->sc_data_direction == DMA_TO_DEVICE) {
                writedir = 1;
-               SE_DEBUG(DBG_LVL_4, "task->imm_count=0x%08x \n",
+               SE_DEBUG(DBG_LVL_4, "task->imm_count=0x%08x\n",
                         task->imm_count);
        } else
                writedir = 0;
 
        phba = (struct beiscsi_hba *)pci_get_drvdata(pcidev);
        if (!phba) {
-               dev_err(&pcidev->dev, "beiscsi_remove called with no phba \n");
+               dev_err(&pcidev->dev, "beiscsi_remove called with no phba\n");
                return;
        }
 
        phba = beiscsi_hba_alloc(pcidev);
        if (!phba) {
                dev_err(&pcidev->dev, "beiscsi_dev_probe-"
-                       " Failed in beiscsi_hba_alloc \n");
+                       " Failed in beiscsi_hba_alloc\n");
                goto disable_pci;
        }
 
        else
                num_cpus = 1;
        phba->num_cpus = num_cpus;
-       SE_DEBUG(DBG_LVL_8, "num_cpus = %d \n", phba->num_cpus);
+       SE_DEBUG(DBG_LVL_8, "num_cpus = %d\n", phba->num_cpus);
 
        if (enable_msix)
                beiscsi_msix_enable(phba);
                             "Failed to hwi_enable_intr\n");
                goto free_ctrlr;
        }
-       SE_DEBUG(DBG_LVL_8, "\n\n\n SUCCESS - DRIVER LOADED \n\n\n");
+       SE_DEBUG(DBG_LVL_8, "\n\n\n SUCCESS - DRIVER LOADED\n\n\n");
        return 0;
 
 free_ctrlr:
                         "transport.\n");
                return -ENOMEM;
        }
-       SE_DEBUG(DBG_LVL_8, "In beiscsi_module_init, tt=%p \n",
+       SE_DEBUG(DBG_LVL_8, "In beiscsi_module_init, tt=%p\n",
                 &beiscsi_iscsi_transport);
 
        ret = pci_register_driver(&beiscsi_pci_driver);