media: devnode: Rename mdev argument as devnode
Historically, mdev argument name was being used on both struct
media_device and struct media_devnode. Recently most occurrences of mdev
referring to struct media_devnode were replaced by devnode, which makes
more sense. Fix the last remaining occurrence.
Fixes: 163f1e93e9
("[media] media-devnode: fix namespace mess")
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Acked-by: Hans Verkuil <hans.verkuil@cisco.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
10e81bcdde
commit
552636be7a
|
@ -537,9 +537,9 @@ static DEVICE_ATTR(model, S_IRUGO, show_model, NULL);
|
||||||
* Registration/unregistration
|
* Registration/unregistration
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static void media_device_release(struct media_devnode *mdev)
|
static void media_device_release(struct media_devnode *devnode)
|
||||||
{
|
{
|
||||||
dev_dbg(mdev->parent, "Media device released\n");
|
dev_dbg(devnode->parent, "Media device released\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue