[media] v4l2-dev: rename two functions
authorHans Verkuil <hans.verkuil@cisco.com>
Mon, 14 May 2012 14:32:48 +0000 (11:32 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Mon, 14 May 2012 18:06:50 +0000 (15:06 -0300)
Rename the function v4l2_dont_use_lock to v4l2_disable_ioctl_locking,
and rename v4l2_dont_use_cmd to v4l2_disable_ioctl.

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Documentation/video4linux/v4l2-framework.txt
drivers/media/video/gspca/gspca.c
drivers/media/video/pwc/pwc-if.c
drivers/media/video/v4l2-dev.c
include/media/v4l2-dev.h
sound/i2c/other/tea575x-tuner.c

index c24a9393dbb9bb4ada4391cb689b27e5fbae86b0..1f590527005064b677830745ad10eac22c1aa92f 100644 (file)
@@ -623,7 +623,7 @@ In some cases you want to tell the core that a function you had specified in
 your v4l2_ioctl_ops should be ignored. You can mark such ioctls by calling this
 function before video_device_register is called:
 
-void v4l2_dont_use_cmd(struct video_device *vdev, unsigned int cmd);
+void v4l2_disable_ioctl(struct video_device *vdev, unsigned int cmd);
 
 This tends to be needed if based on external factors (e.g. which card is
 being used) you want to turns off certain features in v4l2_ioctl_ops without
@@ -655,9 +655,9 @@ will be either a top-level mutex or a mutex per device node. By default this
 lock will be used for unlocked_ioctl, but you can disable locking for
 selected ioctls by calling:
 
-       void v4l2_dont_use_lock(struct video_device *vdev, unsigned int cmd);
+       void v4l2_disable_ioctl_locking(struct video_device *vdev, unsigned int cmd);
 
-E.g.: v4l2_dont_use_lock(vdev, VIDIOC_DQBUF);
+E.g.: v4l2_disable_ioctl_locking(vdev, VIDIOC_DQBUF);
 
 You have to call this before you register the video_device.
 
index 2b393b2cf62de9f824d68a1ddffe98927028ba61..137166d73945fdd94fee6a1dc4dc9115da65dd4e 100644 (file)
@@ -2285,9 +2285,9 @@ int gspca_dev_probe2(struct usb_interface *intf,
         * usb_lock is taken for a long time, e.g. when changing a control
         * value, and a new frame is ready to be dequeued.
         */
-       v4l2_dont_use_lock(&gspca_dev->vdev, VIDIOC_DQBUF);
-       v4l2_dont_use_lock(&gspca_dev->vdev, VIDIOC_QBUF);
-       v4l2_dont_use_lock(&gspca_dev->vdev, VIDIOC_QUERYBUF);
+       v4l2_disable_ioctl_locking(&gspca_dev->vdev, VIDIOC_DQBUF);
+       v4l2_disable_ioctl_locking(&gspca_dev->vdev, VIDIOC_QBUF);
+       v4l2_disable_ioctl_locking(&gspca_dev->vdev, VIDIOC_QUERYBUF);
 
        /* init video stuff */
        ret = video_register_device(&gspca_dev->vdev,
index 998e809765a7af94fbda4f78ef40ef2e67f315e0..ec4e2ef54e6570dc77121b0a7e650a35d2eb406e 100644 (file)
@@ -1195,9 +1195,9 @@ static int usb_pwc_probe(struct usb_interface *intf, const struct usb_device_id
         * v4l2_lock is taken for a long time, e.g. when changing a control
         * value, and a new frame is ready to be dequeued.
         */
-       v4l2_dont_use_lock(&pdev->vdev, VIDIOC_DQBUF);
-       v4l2_dont_use_lock(&pdev->vdev, VIDIOC_QBUF);
-       v4l2_dont_use_lock(&pdev->vdev, VIDIOC_QUERYBUF);
+       v4l2_disable_ioctl_locking(&pdev->vdev, VIDIOC_DQBUF);
+       v4l2_disable_ioctl_locking(&pdev->vdev, VIDIOC_QBUF);
+       v4l2_disable_ioctl_locking(&pdev->vdev, VIDIOC_QUERYBUF);
 
        rc = video_register_device(&pdev->vdev, VFL_TYPE_GRABBER, -1);
        if (rc < 0) {
index 2c4feffa4939a0d65f38da90d4f937b00004ec1a..5ccbd4629f9c34eb48322e29a5c0dc3aec668a4b 100644 (file)
@@ -329,7 +329,7 @@ static long v4l2_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
                if (vdev->lock) {
                        /* always lock unless the cmd is marked as "don't use lock" */
                        locked = !v4l2_is_known_ioctl(cmd) ||
-                                !test_bit(_IOC_NR(cmd), vdev->dont_use_lock);
+                                !test_bit(_IOC_NR(cmd), vdev->disable_locking);
 
                        if (locked && mutex_lock_interruptible(vdev->lock))
                                return -ERESTARTSYS;
index 70d91c99728bcbf22e7033ea9ed0293c5a444387..a056e6ee1b6820c05d87ae6e178cc0a6008dc814 100644 (file)
@@ -132,7 +132,7 @@ struct video_device
        DECLARE_BITMAP(valid_ioctls, BASE_VIDIOC_PRIVATE);
 
        /* serialization lock */
-       DECLARE_BITMAP(dont_use_lock, BASE_VIDIOC_PRIVATE);
+       DECLARE_BITMAP(disable_locking, BASE_VIDIOC_PRIVATE);
        struct mutex *lock;
 };
 
@@ -182,17 +182,17 @@ void video_device_release_empty(struct video_device *vdev);
 bool v4l2_is_known_ioctl(unsigned int cmd);
 
 /* mark that this command shouldn't use core locking */
-static inline void v4l2_dont_use_lock(struct video_device *vdev, unsigned int cmd)
+static inline void v4l2_disable_ioctl_locking(struct video_device *vdev, unsigned int cmd)
 {
        if (_IOC_NR(cmd) < BASE_VIDIOC_PRIVATE)
-               set_bit(_IOC_NR(cmd), vdev->dont_use_lock);
+               set_bit(_IOC_NR(cmd), vdev->disable_locking);
 }
 
-/* Mark that this command isn't implemented, must be called before
+/* Mark that this command isn't implemented. This must be called before
    video_device_register. See also the comments in determine_valid_ioctls().
    This function allows drivers to provide just one v4l2_ioctl_ops struct, but
    disable ioctls based on the specific card that is actually found. */
-static inline void v4l2_dont_use_cmd(struct video_device *vdev, unsigned int cmd)
+static inline void v4l2_disable_ioctl(struct video_device *vdev, unsigned int cmd)
 {
        if (_IOC_NR(cmd) < BASE_VIDIOC_PRIVATE)
                set_bit(_IOC_NR(cmd), vdev->valid_ioctls);
index 6e9ca7bd0f1146017448b36c187a85aa203302d8..582aace20ea31357b94a660e2607da4b058ad228 100644 (file)
@@ -377,7 +377,7 @@ int snd_tea575x_init(struct snd_tea575x *tea)
        set_bit(V4L2_FL_USE_FH_PRIO, &tea->vd.flags);
        /* disable hw_freq_seek if we can't use it */
        if (tea->cannot_read_data)
-               v4l2_dont_use_cmd(&tea->vd, VIDIOC_S_HW_FREQ_SEEK);
+               v4l2_disable_ioctl(&tea->vd, VIDIOC_S_HW_FREQ_SEEK);
 
        v4l2_ctrl_handler_init(&tea->ctrl_handler, 1);
        v4l2_ctrl_new_std(&tea->ctrl_handler, &tea575x_ctrl_ops, V4L2_CID_AUDIO_MUTE, 0, 1, 1, 1);