diff options
| author | Lei Huang <huanglei@kylinos.cn> | 2026-07-20 10:55:08 +0800 |
|---|---|---|
| committer | Hans Verkuil <hverkuil+cisco@kernel.org> | 2026-07-27 14:22:07 +0200 |
| commit | e260d1d7713b92f7156f5de7716c68438f49ae37 (patch) | |
| tree | 6fd8ba9446030115bb784851065997d675945500 /drivers/media | |
| parent | 5e62e53289f5a9fba98013bb4143e3277b254260 (diff) | |
| download | linux-next-e260d1d7713b92f7156f5de7716c68438f49ae37.tar.gz linux-next-e260d1d7713b92f7156f5de7716c68438f49ae37.zip | |
media: s2255: Replace bare 'unsigned' with 'unsigned int'
Fix 'WARNING: Prefer 'unsigned int' to bare use of 'unsigned''
reported by checkpatch.pl in s2255drv.c.
Signed-off-by: Lei Huang <huanglei@kylinos.cn>
Signed-off-by: Hans Verkuil <hverkuil+cisco@kernel.org>
Diffstat (limited to 'drivers/media')
| -rw-r--r-- | drivers/media/usb/s2255/s2255drv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/s2255/s2255drv.c b/drivers/media/usb/s2255/s2255drv.c index c66cca2e76dd..68cc4ea5b459 100644 --- a/drivers/media/usb/s2255/s2255drv.c +++ b/drivers/media/usb/s2255/s2255drv.c @@ -210,7 +210,7 @@ struct s2255_vc { struct s2255_mode mode; v4l2_std_id std; /* jpeg compression */ - unsigned jpegqual; + unsigned int jpegqual; /* capture parameters (for high quality mode full size) */ struct v4l2_captureparm cap_parm; int cur_frame; |
