[PATCH v3 1/5] media: uvcvideo: uvc_warn should warn not info

From: Ricardo Ribalda

Date: Fri Sep 11 2026 - 09:26:12 EST


Now the uvc_warn_once macro triggers a info message. Use the correct
level.

Signed-off-by: Ricardo Ribalda <ribalda@xxxxxxxxxxxx>
---
drivers/media/usb/uvc/uvcvideo.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/media/usb/uvc/uvcvideo.h b/drivers/media/usb/uvc/uvcvideo.h
index b6bcee4a222f..a80406f20beb 100644
--- a/drivers/media/usb/uvc/uvcvideo.h
+++ b/drivers/media/usb/uvc/uvcvideo.h
@@ -685,7 +685,7 @@ do { \
#define uvc_warn_once(_dev, warn, fmt, ...) \
do { \
if (!test_and_set_bit(warn, &(_dev)->warnings)) \
- dev_info(&(_dev)->intf->dev, fmt, ##__VA_ARGS__); \
+ dev_warn(&(_dev)->intf->dev, fmt, ##__VA_ARGS__); \
} while (0)

/* --------------------------------------------------------------------------

--
2.55.0.1007.g17ff1f9808-goog