mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
media: uvcvideo: Constify descriptor buffers
There is no need to modify the content of UVC descriptor buffers during parsing. Make all the corresponding pointers const to avoid unintended modifications. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Ricardo Ribalda <ribalda@chromium.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
This commit is contained in:
parent
af621ba2ed
commit
102df33eba
@ -221,7 +221,7 @@ static struct uvc_streaming *uvc_stream_new(struct uvc_device *dev,
|
||||
|
||||
static int uvc_parse_format(struct uvc_device *dev,
|
||||
struct uvc_streaming *streaming, struct uvc_format *format,
|
||||
struct uvc_frame *frames, u32 **intervals, unsigned char *buffer,
|
||||
struct uvc_frame *frames, u32 **intervals, const unsigned char *buffer,
|
||||
int buflen)
|
||||
{
|
||||
struct usb_interface *intf = streaming->intf;
|
||||
@ -513,7 +513,7 @@ static int uvc_parse_streaming(struct uvc_device *dev,
|
||||
struct uvc_format *format;
|
||||
struct uvc_frame *frame;
|
||||
struct usb_host_interface *alts = &intf->altsetting[0];
|
||||
unsigned char *_buffer, *buffer = alts->extra;
|
||||
const unsigned char *_buffer, *buffer = alts->extra;
|
||||
int _buflen, buflen = alts->extralen;
|
||||
unsigned int nformats = 0, nframes = 0, nintervals = 0;
|
||||
unsigned int size, i, n, p;
|
||||
@ -1166,7 +1166,7 @@ static int uvc_parse_standard_control(struct uvc_device *dev,
|
||||
static int uvc_parse_control(struct uvc_device *dev)
|
||||
{
|
||||
struct usb_host_interface *alts = dev->intf->cur_altsetting;
|
||||
unsigned char *buffer = alts->extra;
|
||||
const unsigned char *buffer = alts->extra;
|
||||
int buflen = alts->extralen;
|
||||
int ret;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user