v4l2: camera_proxy: Align trace message style

Most of the ioctl handlers in the V4L2CameraProxy class have an empty
line between the tracing printouts and the immediately following buffer
type validation. Align the two occasions where such an empty line is missing
with the others.

Cosmetic change only.

Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
This commit is contained in:
Jacopo Mondi 2020-01-08 11:06:16 +01:00
parent fce110c6d9
commit a5862a7a34

View file

@ -292,6 +292,7 @@ int V4L2CameraProxy::vidioc_s_fmt(struct v4l2_format *arg)
int V4L2CameraProxy::vidioc_try_fmt(struct v4l2_format *arg)
{
LOG(V4L2Compat, Debug) << "Servicing vidioc_try_fmt";
if (!validateBufferType(arg->type))
return -EINVAL;
@ -321,6 +322,7 @@ int V4L2CameraProxy::vidioc_reqbufs(struct v4l2_requestbuffers *arg)
int ret;
LOG(V4L2Compat, Debug) << "Servicing vidioc_reqbufs";
if (!validateBufferType(arg->type) ||
!validateMemoryType(arg->memory))
return -EINVAL;