@@ -2030,7 +2030,7 @@ static bool ata_identify_page_supported(struct ata_device *dev, u8 page)
20302030 * for drives which implement this ATA level or above.
20312031 */
20322032 if (ata_id_major_version (dev -> id ) >= 10 )
2033- ata_dev_warn (dev ,
2033+ ata_dev_notice (dev ,
20342034 "ATA Identify Device Log not supported\n" );
20352035 dev -> horkage |= ATA_HORKAGE_NO_ID_DEV_LOG ;
20362036 return false;
@@ -2102,7 +2102,7 @@ static void ata_dev_config_ncq_send_recv(struct ata_device *dev)
21022102 unsigned int err_mask ;
21032103
21042104 if (!ata_log_supported (dev , ATA_LOG_NCQ_SEND_RECV )) {
2105- ata_dev_warn (dev , "NCQ Send/Recv Log not supported\n" );
2105+ ata_dev_notice (dev , "NCQ Send/Recv Log not supported\n" );
21062106 return ;
21072107 }
21082108 err_mask = ata_read_log_page (dev , ATA_LOG_NCQ_SEND_RECV ,
@@ -2127,8 +2127,8 @@ static void ata_dev_config_ncq_non_data(struct ata_device *dev)
21272127 unsigned int err_mask ;
21282128
21292129 if (!ata_log_supported (dev , ATA_LOG_NCQ_NON_DATA )) {
2130- ata_dev_warn (dev ,
2131- "NCQ Send/Recv Log not supported\n" );
2130+ ata_dev_notice (dev ,
2131+ "NCQ Send/Recv Log not supported\n" );
21322132 return ;
21332133 }
21342134 err_mask = ata_read_log_page (dev , ATA_LOG_NCQ_NON_DATA ,
@@ -2619,14 +2619,14 @@ int ata_dev_configure(struct ata_device *dev)
26192619 if (ata_id_is_cfa (id )) {
26202620 /* CPRM may make this media unusable */
26212621 if (id [ATA_ID_CFA_KEY_MGMT ] & 1 )
2622- ata_dev_warn (dev ,
2622+ ata_dev_notice (dev ,
26232623 "supports DRM functions and may not be fully accessible\n" );
26242624 snprintf (revbuf , 7 , "CFA" );
26252625 } else {
26262626 snprintf (revbuf , 7 , "ATA-%d" , ata_id_major_version (id ));
26272627 /* Warn the user if the device has TPM extensions */
26282628 if (ata_id_has_tpm (id ))
2629- ata_dev_warn (dev ,
2629+ ata_dev_notice (dev ,
26302630 "supports DRM functions and may not be fully accessible\n" );
26312631 }
26322632
@@ -2779,8 +2779,8 @@ int ata_dev_configure(struct ata_device *dev)
27792779 }
27802780
27812781 if ((dev -> horkage & ATA_HORKAGE_FIRMWARE_WARN ) && print_info ) {
2782- ata_dev_warn (dev , "WARNING: device requires firmware update to be fully functional\n" );
2783- ata_dev_warn (dev , " contact the vendor or visit http://ata.wiki.kernel.org\n" );
2782+ ata_dev_notice (dev , "WARNING: device requires firmware update to be fully functional\n" );
2783+ ata_dev_notice (dev , " contact the vendor or visit http://ata.wiki.kernel.org\n" );
27842784 }
27852785
27862786 return 0 ;
0 commit comments