diff options
Diffstat (limited to 'drivers/scsi/bnx2fc/bnx2fc_debug.h')
-rw-r--r-- | drivers/scsi/bnx2fc/bnx2fc_debug.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/scsi/bnx2fc/bnx2fc_debug.h b/drivers/scsi/bnx2fc/bnx2fc_debug.h index 7f6aff68cc53..3416d9a746c7 100644 --- a/drivers/scsi/bnx2fc/bnx2fc_debug.h +++ b/drivers/scsi/bnx2fc/bnx2fc_debug.h | |||
@@ -21,21 +21,21 @@ extern unsigned int bnx2fc_debug_level; | |||
21 | 21 | ||
22 | #define BNX2FC_ELS_DBG(fmt, arg...) \ | 22 | #define BNX2FC_ELS_DBG(fmt, arg...) \ |
23 | BNX2FC_CHK_LOGGING(LOG_ELS, \ | 23 | BNX2FC_CHK_LOGGING(LOG_ELS, \ |
24 | printk(KERN_ALERT PFX fmt, ##arg)) | 24 | printk(KERN_INFO PFX fmt, ##arg)) |
25 | 25 | ||
26 | #define BNX2FC_MISC_DBG(fmt, arg...) \ | 26 | #define BNX2FC_MISC_DBG(fmt, arg...) \ |
27 | BNX2FC_CHK_LOGGING(LOG_MISC, \ | 27 | BNX2FC_CHK_LOGGING(LOG_MISC, \ |
28 | printk(KERN_ALERT PFX fmt, ##arg)) | 28 | printk(KERN_INFO PFX fmt, ##arg)) |
29 | 29 | ||
30 | #define BNX2FC_IO_DBG(io_req, fmt, arg...) \ | 30 | #define BNX2FC_IO_DBG(io_req, fmt, arg...) \ |
31 | do { \ | 31 | do { \ |
32 | if (!io_req || !io_req->port || !io_req->port->lport || \ | 32 | if (!io_req || !io_req->port || !io_req->port->lport || \ |
33 | !io_req->port->lport->host) \ | 33 | !io_req->port->lport->host) \ |
34 | BNX2FC_CHK_LOGGING(LOG_IO, \ | 34 | BNX2FC_CHK_LOGGING(LOG_IO, \ |
35 | printk(KERN_ALERT PFX "NULL " fmt, ##arg)); \ | 35 | printk(KERN_INFO PFX "NULL " fmt, ##arg)); \ |
36 | else \ | 36 | else \ |
37 | BNX2FC_CHK_LOGGING(LOG_IO, \ | 37 | BNX2FC_CHK_LOGGING(LOG_IO, \ |
38 | shost_printk(KERN_ALERT, \ | 38 | shost_printk(KERN_INFO, \ |
39 | (io_req)->port->lport->host, \ | 39 | (io_req)->port->lport->host, \ |
40 | PFX "xid:0x%x " fmt, \ | 40 | PFX "xid:0x%x " fmt, \ |
41 | (io_req)->xid, ##arg)); \ | 41 | (io_req)->xid, ##arg)); \ |
@@ -46,10 +46,10 @@ extern unsigned int bnx2fc_debug_level; | |||
46 | if (!tgt || !tgt->port || !tgt->port->lport || \ | 46 | if (!tgt || !tgt->port || !tgt->port->lport || \ |
47 | !tgt->port->lport->host || !tgt->rport) \ | 47 | !tgt->port->lport->host || !tgt->rport) \ |
48 | BNX2FC_CHK_LOGGING(LOG_TGT, \ | 48 | BNX2FC_CHK_LOGGING(LOG_TGT, \ |
49 | printk(KERN_ALERT PFX "NULL " fmt, ##arg)); \ | 49 | printk(KERN_INFO PFX "NULL " fmt, ##arg)); \ |
50 | else \ | 50 | else \ |
51 | BNX2FC_CHK_LOGGING(LOG_TGT, \ | 51 | BNX2FC_CHK_LOGGING(LOG_TGT, \ |
52 | shost_printk(KERN_ALERT, \ | 52 | shost_printk(KERN_INFO, \ |
53 | (tgt)->port->lport->host, \ | 53 | (tgt)->port->lport->host, \ |
54 | PFX "port:%x " fmt, \ | 54 | PFX "port:%x " fmt, \ |
55 | (tgt)->rport->port_id, ##arg)); \ | 55 | (tgt)->rport->port_id, ##arg)); \ |
@@ -60,10 +60,10 @@ extern unsigned int bnx2fc_debug_level; | |||
60 | do { \ | 60 | do { \ |
61 | if (!lport || !lport->host) \ | 61 | if (!lport || !lport->host) \ |
62 | BNX2FC_CHK_LOGGING(LOG_HBA, \ | 62 | BNX2FC_CHK_LOGGING(LOG_HBA, \ |
63 | printk(KERN_ALERT PFX "NULL " fmt, ##arg)); \ | 63 | printk(KERN_INFO PFX "NULL " fmt, ##arg)); \ |
64 | else \ | 64 | else \ |
65 | BNX2FC_CHK_LOGGING(LOG_HBA, \ | 65 | BNX2FC_CHK_LOGGING(LOG_HBA, \ |
66 | shost_printk(KERN_ALERT, lport->host, \ | 66 | shost_printk(KERN_INFO, lport->host, \ |
67 | PFX fmt, ##arg)); \ | 67 | PFX fmt, ##arg)); \ |
68 | } while (0) | 68 | } while (0) |
69 | 69 | ||