From 18f265a7f5a8dfa65eefb7ae3627af7e90d36c7b Mon Sep 17 00:00:00 2001 From: "Artem S. Tashkinov" Date: Mon, 3 Jun 2024 16:35:48 +0000 Subject: [PATCH] Change the severity of missing UUID from warning to notice --- drivers/nvme/host/sysfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/nvme/host/sysfs.c b/drivers/nvme/host/sysfs.c index 3c55f7edd18193..e049bd4867b251 100644 --- a/drivers/nvme/host/sysfs.c +++ b/drivers/nvme/host/sysfs.c @@ -147,7 +147,7 @@ static ssize_t uuid_show(struct device *dev, struct device_attribute *attr, * we have no UUID set */ if (uuid_is_null(&ids->uuid)) { - dev_warn_once(dev, + dev_notice_once(dev, "No UUID available providing old NGUID\n"); return sysfs_emit(buf, "%pU\n", ids->nguid); }