mbox series

[0/2] media: imx-jpeg: Constify a few static structs

Message ID 20210611234201.64832-1-rikard.falkeborn@gmail.com
Headers show
Series media: imx-jpeg: Constify a few static structs | expand

Message

Rikard Falkeborn June 11, 2021, 11:41 p.m. UTC
Constify two structs that are never modified.

The first patch constifies a static v4l2_m2m_ops struct which contains
function pointers.

The second constifies mxc_jpeg_fmt, which contains read-only data. In
order to do that, a number of function arguments, return values and
pointers was made const as well.

Rikard Falkeborn (2):
  media: imx-jpeg: Constify static struct v4l2_m2m_ops
  media: imx-jpeg: Constify static struct mxc_jpeg_fmt

 drivers/media/platform/imx-jpeg/mxc-jpeg.c | 18 +++++++++---------
 drivers/media/platform/imx-jpeg/mxc-jpeg.h | 18 +++++++++---------
 2 files changed, 18 insertions(+), 18 deletions(-)