media: rkisp1: Rename rkisp1_subdev_notifier() to rkisp1_subdev_notifier_register()
The function name isn't very clear, rename it to rkisp1_subdev_notifier_register(). Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Dafna Hirschfeld <dafna@fastmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
This commit is contained in:
parent
cf7a8e2480
commit
124b89f85e
|
@ -176,7 +176,7 @@ static const struct v4l2_async_notifier_operations rkisp1_subdev_notifier_ops =
|
|||
.complete = rkisp1_subdev_notifier_complete,
|
||||
};
|
||||
|
||||
static int rkisp1_subdev_notifier(struct rkisp1_device *rkisp1)
|
||||
static int rkisp1_subdev_notifier_register(struct rkisp1_device *rkisp1)
|
||||
{
|
||||
struct v4l2_async_notifier *ntf = &rkisp1->notifier;
|
||||
unsigned int next_id = 0;
|
||||
|
@ -358,7 +358,7 @@ static int rkisp1_entities_register(struct rkisp1_device *rkisp1)
|
|||
if (ret)
|
||||
goto error;
|
||||
|
||||
ret = rkisp1_subdev_notifier(rkisp1);
|
||||
ret = rkisp1_subdev_notifier_register(rkisp1);
|
||||
if (ret) {
|
||||
dev_err(rkisp1->dev,
|
||||
"Failed to register subdev notifier(%d)\n", ret);
|
||||
|
|
Loading…
Reference in New Issue