Commit 4dadf056 authored by Steve Longerbeam's avatar Steve Longerbeam Committed by Mauro Carvalho Chehab

media: staging/imx: remove devname string from imx_media_subdev

A separate string for the device name, for DEVNAME async match, was
never needed. Just assign the asd device name to the passed platform
device name pointer in imx_media_add_async_subdev().
Signed-off-by: default avatarSteve Longerbeam <steve_longerbeam@mentor.com>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent f5abe1c5
...@@ -112,8 +112,7 @@ imx_media_add_async_subdev(struct imx_media_dev *imxmd, ...@@ -112,8 +112,7 @@ imx_media_add_async_subdev(struct imx_media_dev *imxmd,
asd->match.fwnode.fwnode = of_fwnode_handle(np); asd->match.fwnode.fwnode = of_fwnode_handle(np);
} else { } else {
asd->match_type = V4L2_ASYNC_MATCH_DEVNAME; asd->match_type = V4L2_ASYNC_MATCH_DEVNAME;
strncpy(imxsd->devname, devname, sizeof(imxsd->devname)); asd->match.device_name.name = devname;
asd->match.device_name.name = imxsd->devname;
imxsd->pdev = pdev; imxsd->pdev = pdev;
} }
......
...@@ -128,8 +128,6 @@ struct imx_media_subdev { ...@@ -128,8 +128,6 @@ struct imx_media_subdev {
/* the platform device if this is an IPU-internal subdev */ /* the platform device if this is an IPU-internal subdev */
struct platform_device *pdev; struct platform_device *pdev;
/* the devname is needed for async devname match */
char devname[32];
}; };
struct imx_media_dev { struct imx_media_dev {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment