@@ -2207,7 +2207,7 @@ static bool ata_identify_page_supported(struct ata_device *dev, u8 page)
22072207 * for drives which implement this ATA level or above.
22082208 */
22092209 if (ata_id_major_version (dev -> id ) >= 10 )
2210- ata_dev_warn (dev ,
2210+ ata_dev_notice (dev ,
22112211 "ATA Identify Device Log not supported\n" );
22122212 dev -> quirks |= ATA_QUIRK_NO_ID_DEV_LOG ;
22132213 return false;
@@ -2278,7 +2278,7 @@ static void ata_dev_config_ncq_send_recv(struct ata_device *dev)
22782278 unsigned int err_mask ;
22792279
22802280 if (!ata_log_supported (dev , ATA_LOG_NCQ_SEND_RECV )) {
2281- ata_dev_warn (dev , "NCQ Send/Recv Log not supported\n" );
2281+ ata_dev_notice (dev , "NCQ Send/Recv Log not supported\n" );
22822282 return ;
22832283 }
22842284 err_mask = ata_read_log_page (dev , ATA_LOG_NCQ_SEND_RECV ,
@@ -2302,8 +2302,8 @@ static void ata_dev_config_ncq_non_data(struct ata_device *dev)
23022302 unsigned int err_mask ;
23032303
23042304 if (!ata_log_supported (dev , ATA_LOG_NCQ_NON_DATA )) {
2305- ata_dev_warn (dev ,
2306- "NCQ Non-Data Log not supported\n" );
2305+ ata_dev_notice (dev ,
2306+ "NCQ Non-Data Log not supported\n" );
23072307 return ;
23082308 }
23092309 err_mask = ata_read_log_page (dev , ATA_LOG_NCQ_NON_DATA ,
@@ -2994,14 +2994,14 @@ int ata_dev_configure(struct ata_device *dev)
29942994 if (ata_id_is_cfa (id )) {
29952995 /* CPRM may make this media unusable */
29962996 if (id [ATA_ID_CFA_KEY_MGMT ] & 1 )
2997- ata_dev_warn (dev ,
2997+ ata_dev_notice (dev ,
29982998 "supports DRM functions and may not be fully accessible\n" );
29992999 snprintf (revbuf , 7 , "CFA" );
30003000 } else {
30013001 snprintf (revbuf , 7 , "ATA-%d" , ata_id_major_version (id ));
30023002 /* Warn the user if the device has TPM extensions */
30033003 if (ata_id_has_tpm (id ))
3004- ata_dev_warn (dev ,
3004+ ata_dev_notice (dev ,
30053005 "supports DRM functions and may not be fully accessible\n" );
30063006 }
30073007
@@ -3158,8 +3158,8 @@ int ata_dev_configure(struct ata_device *dev)
31583158 }
31593159
31603160 if ((dev -> quirks & ATA_QUIRK_FIRMWARE_WARN ) && print_info ) {
3161- ata_dev_warn (dev , "WARNING: device requires firmware update to be fully functional\n" );
3162- ata_dev_warn (dev , " contact the vendor or visit http://ata.wiki.kernel.org\n" );
3161+ ata_dev_notice (dev , "WARNING: device requires firmware update to be fully functional\n" );
3162+ ata_dev_notice (dev , " contact the vendor or visit http://ata.wiki.kernel.org\n" );
31633163 }
31643164
31653165 return 0 ;
0 commit comments