summaryrefslogtreecommitdiffstats
path: root/drivers/scsi/libata-core.c
diff options
context:
space:
mode:
authorBorislav Petkov2006-06-12 05:17:01 +0200
committerJeff Garzik2006-06-12 05:17:01 +0200
commitbd5d825c9434b83925a88bd30eb9eef51908a3c9 (patch)
tree1b95f111b90d2a6909d325a100d3c75840e3991c /drivers/scsi/libata-core.c
parent[PATCH] sata_sil24: endian anotations (diff)
downloadkernel-qcow2-linux-bd5d825c9434b83925a88bd30eb9eef51908a3c9.tar.gz
kernel-qcow2-linux-bd5d825c9434b83925a88bd30eb9eef51908a3c9.tar.xz
kernel-qcow2-linux-bd5d825c9434b83925a88bd30eb9eef51908a3c9.zip
libata: Adjust initial debugging levels through preprocessor defines.
Signed-off-by: <petkov@uni-muenster.de> Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/scsi/libata-core.c')
-rw-r--r--drivers/scsi/libata-core.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/drivers/scsi/libata-core.c b/drivers/scsi/libata-core.c
index 40d16124cc9f..3f1aa77621fd 100644
--- a/drivers/scsi/libata-core.c
+++ b/drivers/scsi/libata-core.c
@@ -5181,7 +5181,15 @@ static void ata_host_init(struct ata_port *ap, struct Scsi_Host *host,
ap->hw_sata_spd_limit = UINT_MAX;
ap->active_tag = ATA_TAG_POISON;
ap->last_ctl = 0xFF;
- ap->msg_enable = ATA_MSG_DRV;
+
+#if defined(ATA_VERBOSE_DEBUG)
+ /* turn on all debugging levels */
+ ap->msg_enable = 0x00FF;
+#elif defined(ATA_DEBUG)
+ ap->msg_enable = ATA_MSG_DRV | ATA_MSG_INFO | ATA_MSG_CTL | ATA_MSG_WARN | ATA_MSG_ERR;
+#else
+ ap->msg_enable = ATA_MSG_DRV | ATA_MSG_ERR;
+#endif
INIT_WORK(&ap->port_task, NULL, NULL);
INIT_WORK(&ap->hotplug_task, ata_scsi_hotplug, ap);