ata: libata: drop ata_msg_info()
authorHannes Reinecke <hare@suse.de>
Tue, 21 Dec 2021 07:21:06 +0000 (08:21 +0100)
committerDamien Le Moal <damien.lemoal@opensource.wdc.com>
Wed, 5 Jan 2022 10:33:02 +0000 (19:33 +0900)
Convert the sole caller to ata_dev_dbg() and remove the definition.

Signed-off-by: Hannes Reinecke <hare@suse.de>
Signed-off-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>
drivers/ata/libata-core.c
include/linux/libata.h

index 623a6f2..80ca94e 100644 (file)
@@ -2530,8 +2530,8 @@ int ata_dev_configure(struct ata_device *dev)
        char modelbuf[ATA_ID_PROD_LEN+1];
        int rc;
 
-       if (!ata_dev_enabled(dev) && ata_msg_info(ap)) {
-               ata_dev_info(dev, "%s: ENTER/EXIT -- nodev\n", __func__);
+       if (!ata_dev_enabled(dev)) {
+               ata_dev_dbg(dev, "no device\n");
                return 0;
        }
 
@@ -5333,11 +5333,7 @@ struct ata_port *ata_port_alloc(struct ata_host *host)
 
 #if defined(ATA_VERBOSE_DEBUG)
        /* turn on all debugging levels */
-       ap->msg_enable = 0x0003;
-#elif defined(ATA_DEBUG)
-       ap->msg_enable = ATA_MSG_DRV | ATA_MSG_INFO;
-#else
-       ap->msg_enable = ATA_MSG_DRV;
+       ap->msg_enable = 0x0001;
 #endif
 
        mutex_init(&ap->scsi_scan_mutex);
index 455d7e7..524d09b 100644 (file)
 
 enum {
        ATA_MSG_DRV     = 0x0001,
-       ATA_MSG_INFO    = 0x0002,
 };
 
 #define ata_msg_drv(p)    ((p)->msg_enable & ATA_MSG_DRV)
-#define ata_msg_info(p)   ((p)->msg_enable & ATA_MSG_INFO)
 
 static inline u32 ata_msg_init(int dval, int default_msg_enable_bits)
 {