]> Pileus Git - ~andy/linux/blob - drivers/media/video/v4l2-dev.c
e405b8094b94036730cdfcf457c2d85fa7c48229
[~andy/linux] / drivers / media / video / v4l2-dev.c
1 /*
2  * Video capture interface for Linux version 2
3  *
4  *      A generic video device interface for the LINUX operating system
5  *      using a set of device structures/vectors for low level operations.
6  *
7  *      This program is free software; you can redistribute it and/or
8  *      modify it under the terms of the GNU General Public License
9  *      as published by the Free Software Foundation; either version
10  *      2 of the License, or (at your option) any later version.
11  *
12  * Authors:     Alan Cox, <alan@lxorguk.ukuu.org.uk> (version 1)
13  *              Mauro Carvalho Chehab <mchehab@infradead.org> (version 2)
14  *
15  * Fixes:       20000516  Claudio Matsuoka <claudio@conectiva.com>
16  *              - Added procfs support
17  */
18
19 #include <linux/module.h>
20 #include <linux/types.h>
21 #include <linux/kernel.h>
22 #include <linux/mm.h>
23 #include <linux/string.h>
24 #include <linux/errno.h>
25 #include <linux/init.h>
26 #include <linux/kmod.h>
27 #include <linux/slab.h>
28 #include <asm/uaccess.h>
29 #include <asm/system.h>
30
31 #include <media/v4l2-common.h>
32 #include <media/v4l2-device.h>
33 #include <media/v4l2-ioctl.h>
34
35 #define VIDEO_NUM_DEVICES       256
36 #define VIDEO_NAME              "video4linux"
37
38 /*
39  *      sysfs stuff
40  */
41
42 static ssize_t show_index(struct device *cd,
43                          struct device_attribute *attr, char *buf)
44 {
45         struct video_device *vdev = to_video_device(cd);
46
47         return sprintf(buf, "%i\n", vdev->index);
48 }
49
50 static ssize_t show_name(struct device *cd,
51                          struct device_attribute *attr, char *buf)
52 {
53         struct video_device *vdev = to_video_device(cd);
54
55         return sprintf(buf, "%.*s\n", (int)sizeof(vdev->name), vdev->name);
56 }
57
58 static struct device_attribute video_device_attrs[] = {
59         __ATTR(name, S_IRUGO, show_name, NULL),
60         __ATTR(index, S_IRUGO, show_index, NULL),
61         __ATTR_NULL
62 };
63
64 /*
65  *      Active devices
66  */
67 static struct video_device *video_device[VIDEO_NUM_DEVICES];
68 static DEFINE_MUTEX(videodev_lock);
69 static DECLARE_BITMAP(devnode_nums[VFL_TYPE_MAX], VIDEO_NUM_DEVICES);
70
71 /* Device node utility functions */
72
73 /* Note: these utility functions all assume that vfl_type is in the range
74    [0, VFL_TYPE_MAX-1]. */
75
76 #ifdef CONFIG_VIDEO_FIXED_MINOR_RANGES
77 /* Return the bitmap corresponding to vfl_type. */
78 static inline unsigned long *devnode_bits(int vfl_type)
79 {
80         /* Any types not assigned to fixed minor ranges must be mapped to
81            one single bitmap for the purposes of finding a free node number
82            since all those unassigned types use the same minor range. */
83         int idx = (vfl_type > VFL_TYPE_RADIO) ? VFL_TYPE_MAX - 1 : vfl_type;
84
85         return devnode_nums[idx];
86 }
87 #else
88 /* Return the bitmap corresponding to vfl_type. */
89 static inline unsigned long *devnode_bits(int vfl_type)
90 {
91         return devnode_nums[vfl_type];
92 }
93 #endif
94
95 /* Mark device node number vdev->num as used */
96 static inline void devnode_set(struct video_device *vdev)
97 {
98         set_bit(vdev->num, devnode_bits(vdev->vfl_type));
99 }
100
101 /* Mark device node number vdev->num as unused */
102 static inline void devnode_clear(struct video_device *vdev)
103 {
104         clear_bit(vdev->num, devnode_bits(vdev->vfl_type));
105 }
106
107 /* Try to find a free device node number in the range [from, to> */
108 static inline int devnode_find(struct video_device *vdev, int from, int to)
109 {
110         return find_next_zero_bit(devnode_bits(vdev->vfl_type), to, from);
111 }
112
113 struct video_device *video_device_alloc(void)
114 {
115         return kzalloc(sizeof(struct video_device), GFP_KERNEL);
116 }
117 EXPORT_SYMBOL(video_device_alloc);
118
119 void video_device_release(struct video_device *vdev)
120 {
121         kfree(vdev);
122 }
123 EXPORT_SYMBOL(video_device_release);
124
125 void video_device_release_empty(struct video_device *vdev)
126 {
127         /* Do nothing */
128         /* Only valid when the video_device struct is a static. */
129 }
130 EXPORT_SYMBOL(video_device_release_empty);
131
132 static inline void video_get(struct video_device *vdev)
133 {
134         get_device(&vdev->dev);
135 }
136
137 static inline void video_put(struct video_device *vdev)
138 {
139         put_device(&vdev->dev);
140 }
141
142 /* Called when the last user of the video device exits. */
143 static void v4l2_device_release(struct device *cd)
144 {
145         struct video_device *vdev = to_video_device(cd);
146
147         mutex_lock(&videodev_lock);
148         if (video_device[vdev->minor] != vdev) {
149                 mutex_unlock(&videodev_lock);
150                 /* should not happen */
151                 WARN_ON(1);
152                 return;
153         }
154
155         /* Free up this device for reuse */
156         video_device[vdev->minor] = NULL;
157
158         /* Delete the cdev on this minor as well */
159         cdev_del(vdev->cdev);
160         /* Just in case some driver tries to access this from
161            the release() callback. */
162         vdev->cdev = NULL;
163
164         /* Mark device node number as free */
165         devnode_clear(vdev);
166
167         mutex_unlock(&videodev_lock);
168
169         /* Release video_device and perform other
170            cleanups as needed. */
171         vdev->release(vdev);
172 }
173
174 static struct class video_class = {
175         .name = VIDEO_NAME,
176         .dev_attrs = video_device_attrs,
177 };
178
179 struct video_device *video_devdata(struct file *file)
180 {
181         return video_device[iminor(file->f_path.dentry->d_inode)];
182 }
183 EXPORT_SYMBOL(video_devdata);
184
185 static ssize_t v4l2_read(struct file *filp, char __user *buf,
186                 size_t sz, loff_t *off)
187 {
188         struct video_device *vdev = video_devdata(filp);
189         int ret = -ENODEV;
190
191         if (!vdev->fops->read)
192                 return -EINVAL;
193         if (vdev->lock && mutex_lock_interruptible(vdev->lock))
194                 return -ERESTARTSYS;
195         if (video_is_registered(vdev))
196                 ret = vdev->fops->read(filp, buf, sz, off);
197         if (vdev->lock)
198                 mutex_unlock(vdev->lock);
199         return ret;
200 }
201
202 static ssize_t v4l2_write(struct file *filp, const char __user *buf,
203                 size_t sz, loff_t *off)
204 {
205         struct video_device *vdev = video_devdata(filp);
206         int ret = -ENODEV;
207
208         if (!vdev->fops->write)
209                 return -EINVAL;
210         if (vdev->lock && mutex_lock_interruptible(vdev->lock))
211                 return -ERESTARTSYS;
212         if (video_is_registered(vdev))
213                 ret = vdev->fops->write(filp, buf, sz, off);
214         if (vdev->lock)
215                 mutex_unlock(vdev->lock);
216         return ret;
217 }
218
219 static unsigned int v4l2_poll(struct file *filp, struct poll_table_struct *poll)
220 {
221         struct video_device *vdev = video_devdata(filp);
222         int ret = POLLERR | POLLHUP;
223
224         if (!vdev->fops->poll)
225                 return DEFAULT_POLLMASK;
226         if (vdev->lock)
227                 mutex_lock(vdev->lock);
228         if (video_is_registered(vdev))
229                 ret = vdev->fops->poll(filp, poll);
230         if (vdev->lock)
231                 mutex_unlock(vdev->lock);
232         return ret;
233 }
234
235 static long v4l2_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
236 {
237         struct video_device *vdev = video_devdata(filp);
238         int ret = -ENODEV;
239
240         if (vdev->fops->unlocked_ioctl) {
241                 if (vdev->lock && mutex_lock_interruptible(vdev->lock))
242                         return -ERESTARTSYS;
243                 if (video_is_registered(vdev))
244                         ret = vdev->fops->unlocked_ioctl(filp, cmd, arg);
245                 if (vdev->lock)
246                         mutex_unlock(vdev->lock);
247         } else if (vdev->fops->ioctl) {
248                 /* This code path is a replacement for the BKL. It is a major
249                  * hack but it will have to do for those drivers that are not
250                  * yet converted to use unlocked_ioctl.
251                  *
252                  * There are two options: if the driver implements struct
253                  * v4l2_device, then the lock defined there is used to
254                  * serialize the ioctls. Otherwise the v4l2 core lock defined
255                  * below is used. This lock is really bad since it serializes
256                  * completely independent devices.
257                  *
258                  * Both variants suffer from the same problem: if the driver
259                  * sleeps, then it blocks all ioctls since the lock is still
260                  * held. This is very common for VIDIOC_DQBUF since that
261                  * normally waits for a frame to arrive. As a result any other
262                  * ioctl calls will proceed very, very slowly since each call
263                  * will have to wait for the VIDIOC_QBUF to finish. Things that
264                  * should take 0.01s may now take 10-20 seconds.
265                  *
266                  * The workaround is to *not* take the lock for VIDIOC_DQBUF.
267                  * This actually works OK for videobuf-based drivers, since
268                  * videobuf will take its own internal lock.
269                  */
270                 static DEFINE_MUTEX(v4l2_ioctl_mutex);
271                 struct mutex *m = vdev->v4l2_dev ?
272                         &vdev->v4l2_dev->ioctl_lock : &v4l2_ioctl_mutex;
273
274                 if (cmd != VIDIOC_DQBUF && mutex_lock_interruptible(m))
275                         return -ERESTARTSYS;
276                 if (video_is_registered(vdev))
277                         ret = vdev->fops->ioctl(filp, cmd, arg);
278                 if (cmd != VIDIOC_DQBUF)
279                         mutex_unlock(m);
280         } else
281                 ret = -ENOTTY;
282
283         return ret;
284 }
285
286 static int v4l2_mmap(struct file *filp, struct vm_area_struct *vm)
287 {
288         struct video_device *vdev = video_devdata(filp);
289         int ret = -ENODEV;
290
291         if (!vdev->fops->mmap)
292                 return ret;
293         if (vdev->lock && mutex_lock_interruptible(vdev->lock))
294                 return -ERESTARTSYS;
295         if (video_is_registered(vdev))
296                 ret = vdev->fops->mmap(filp, vm);
297         if (vdev->lock)
298                 mutex_unlock(vdev->lock);
299         return ret;
300 }
301
302 /* Override for the open function */
303 static int v4l2_open(struct inode *inode, struct file *filp)
304 {
305         struct video_device *vdev;
306 #if defined(CONFIG_MEDIA_CONTROLLER)
307         struct media_entity *entity = NULL;
308 #endif
309         int ret = 0;
310
311         /* Check if the video device is available */
312         mutex_lock(&videodev_lock);
313         vdev = video_devdata(filp);
314         /* return ENODEV if the video device has already been removed. */
315         if (vdev == NULL || !video_is_registered(vdev)) {
316                 mutex_unlock(&videodev_lock);
317                 return -ENODEV;
318         }
319         /* and increase the device refcount */
320         video_get(vdev);
321         mutex_unlock(&videodev_lock);
322 #if defined(CONFIG_MEDIA_CONTROLLER)
323         if (vdev->v4l2_dev && vdev->v4l2_dev->mdev) {
324                 entity = media_entity_get(&vdev->entity);
325                 if (!entity) {
326                         ret = -EBUSY;
327                         video_put(vdev);
328                         return ret;
329                 }
330         }
331 #endif
332         if (vdev->fops->open) {
333                 if (vdev->lock && mutex_lock_interruptible(vdev->lock)) {
334                         ret = -ERESTARTSYS;
335                         goto err;
336                 }
337                 if (video_is_registered(vdev))
338                         ret = vdev->fops->open(filp);
339                 else
340                         ret = -ENODEV;
341                 if (vdev->lock)
342                         mutex_unlock(vdev->lock);
343         }
344
345 err:
346         /* decrease the refcount in case of an error */
347         if (ret) {
348 #if defined(CONFIG_MEDIA_CONTROLLER)
349                 if (vdev->v4l2_dev && vdev->v4l2_dev->mdev)
350                         media_entity_put(entity);
351 #endif
352                 video_put(vdev);
353         }
354         return ret;
355 }
356
357 /* Override for the release function */
358 static int v4l2_release(struct inode *inode, struct file *filp)
359 {
360         struct video_device *vdev = video_devdata(filp);
361         int ret = 0;
362
363         if (vdev->fops->release) {
364                 if (vdev->lock)
365                         mutex_lock(vdev->lock);
366                 vdev->fops->release(filp);
367                 if (vdev->lock)
368                         mutex_unlock(vdev->lock);
369         }
370 #if defined(CONFIG_MEDIA_CONTROLLER)
371         if (vdev->v4l2_dev && vdev->v4l2_dev->mdev)
372                 media_entity_put(&vdev->entity);
373 #endif
374         /* decrease the refcount unconditionally since the release()
375            return value is ignored. */
376         video_put(vdev);
377         return ret;
378 }
379
380 static const struct file_operations v4l2_fops = {
381         .owner = THIS_MODULE,
382         .read = v4l2_read,
383         .write = v4l2_write,
384         .open = v4l2_open,
385         .mmap = v4l2_mmap,
386         .unlocked_ioctl = v4l2_ioctl,
387 #ifdef CONFIG_COMPAT
388         .compat_ioctl = v4l2_compat_ioctl32,
389 #endif
390         .release = v4l2_release,
391         .poll = v4l2_poll,
392         .llseek = no_llseek,
393 };
394
395 /**
396  * get_index - assign stream index number based on parent device
397  * @vdev: video_device to assign index number to, vdev->parent should be assigned
398  *
399  * Note that when this is called the new device has not yet been registered
400  * in the video_device array, but it was able to obtain a minor number.
401  *
402  * This means that we can always obtain a free stream index number since
403  * the worst case scenario is that there are VIDEO_NUM_DEVICES - 1 slots in
404  * use of the video_device array.
405  *
406  * Returns a free index number.
407  */
408 static int get_index(struct video_device *vdev)
409 {
410         /* This can be static since this function is called with the global
411            videodev_lock held. */
412         static DECLARE_BITMAP(used, VIDEO_NUM_DEVICES);
413         int i;
414
415         /* Some drivers do not set the parent. In that case always return 0. */
416         if (vdev->parent == NULL)
417                 return 0;
418
419         bitmap_zero(used, VIDEO_NUM_DEVICES);
420
421         for (i = 0; i < VIDEO_NUM_DEVICES; i++) {
422                 if (video_device[i] != NULL &&
423                     video_device[i]->parent == vdev->parent) {
424                         set_bit(video_device[i]->index, used);
425                 }
426         }
427
428         return find_first_zero_bit(used, VIDEO_NUM_DEVICES);
429 }
430
431 /**
432  *      __video_register_device - register video4linux devices
433  *      @vdev: video device structure we want to register
434  *      @type: type of device to register
435  *      @nr:   which device node number (0 == /dev/video0, 1 == /dev/video1, ...
436  *             -1 == first free)
437  *      @warn_if_nr_in_use: warn if the desired device node number
438  *             was already in use and another number was chosen instead.
439  *      @owner: module that owns the video device node
440  *
441  *      The registration code assigns minor numbers and device node numbers
442  *      based on the requested type and registers the new device node with
443  *      the kernel.
444  *
445  *      This function assumes that struct video_device was zeroed when it
446  *      was allocated and does not contain any stale date.
447  *
448  *      An error is returned if no free minor or device node number could be
449  *      found, or if the registration of the device node failed.
450  *
451  *      Zero is returned on success.
452  *
453  *      Valid types are
454  *
455  *      %VFL_TYPE_GRABBER - A frame grabber
456  *
457  *      %VFL_TYPE_VBI - Vertical blank data (undecoded)
458  *
459  *      %VFL_TYPE_RADIO - A radio card
460  *
461  *      %VFL_TYPE_SUBDEV - A subdevice
462  */
463 int __video_register_device(struct video_device *vdev, int type, int nr,
464                 int warn_if_nr_in_use, struct module *owner)
465 {
466         int i = 0;
467         int ret;
468         int minor_offset = 0;
469         int minor_cnt = VIDEO_NUM_DEVICES;
470         const char *name_base;
471
472         /* A minor value of -1 marks this video device as never
473            having been registered */
474         vdev->minor = -1;
475
476         /* the release callback MUST be present */
477         WARN_ON(!vdev->release);
478         if (!vdev->release)
479                 return -EINVAL;
480
481         /* v4l2_fh support */
482         spin_lock_init(&vdev->fh_lock);
483         INIT_LIST_HEAD(&vdev->fh_list);
484
485         /* Part 1: check device type */
486         switch (type) {
487         case VFL_TYPE_GRABBER:
488                 name_base = "video";
489                 break;
490         case VFL_TYPE_VBI:
491                 name_base = "vbi";
492                 break;
493         case VFL_TYPE_RADIO:
494                 name_base = "radio";
495                 break;
496         case VFL_TYPE_SUBDEV:
497                 name_base = "v4l-subdev";
498                 break;
499         default:
500                 printk(KERN_ERR "%s called with unknown type: %d\n",
501                        __func__, type);
502                 return -EINVAL;
503         }
504
505         vdev->vfl_type = type;
506         vdev->cdev = NULL;
507         if (vdev->v4l2_dev) {
508                 if (vdev->v4l2_dev->dev)
509                         vdev->parent = vdev->v4l2_dev->dev;
510                 if (vdev->ctrl_handler == NULL)
511                         vdev->ctrl_handler = vdev->v4l2_dev->ctrl_handler;
512         }
513
514         /* Part 2: find a free minor, device node number and device index. */
515 #ifdef CONFIG_VIDEO_FIXED_MINOR_RANGES
516         /* Keep the ranges for the first four types for historical
517          * reasons.
518          * Newer devices (not yet in place) should use the range
519          * of 128-191 and just pick the first free minor there
520          * (new style). */
521         switch (type) {
522         case VFL_TYPE_GRABBER:
523                 minor_offset = 0;
524                 minor_cnt = 64;
525                 break;
526         case VFL_TYPE_RADIO:
527                 minor_offset = 64;
528                 minor_cnt = 64;
529                 break;
530         case VFL_TYPE_VBI:
531                 minor_offset = 224;
532                 minor_cnt = 32;
533                 break;
534         default:
535                 minor_offset = 128;
536                 minor_cnt = 64;
537                 break;
538         }
539 #endif
540
541         /* Pick a device node number */
542         mutex_lock(&videodev_lock);
543         nr = devnode_find(vdev, nr == -1 ? 0 : nr, minor_cnt);
544         if (nr == minor_cnt)
545                 nr = devnode_find(vdev, 0, minor_cnt);
546         if (nr == minor_cnt) {
547                 printk(KERN_ERR "could not get a free device node number\n");
548                 mutex_unlock(&videodev_lock);
549                 return -ENFILE;
550         }
551 #ifdef CONFIG_VIDEO_FIXED_MINOR_RANGES
552         /* 1-on-1 mapping of device node number to minor number */
553         i = nr;
554 #else
555         /* The device node number and minor numbers are independent, so
556            we just find the first free minor number. */
557         for (i = 0; i < VIDEO_NUM_DEVICES; i++)
558                 if (video_device[i] == NULL)
559                         break;
560         if (i == VIDEO_NUM_DEVICES) {
561                 mutex_unlock(&videodev_lock);
562                 printk(KERN_ERR "could not get a free minor\n");
563                 return -ENFILE;
564         }
565 #endif
566         vdev->minor = i + minor_offset;
567         vdev->num = nr;
568         devnode_set(vdev);
569
570         /* Should not happen since we thought this minor was free */
571         WARN_ON(video_device[vdev->minor] != NULL);
572         vdev->index = get_index(vdev);
573         mutex_unlock(&videodev_lock);
574
575         /* Part 3: Initialize the character device */
576         vdev->cdev = cdev_alloc();
577         if (vdev->cdev == NULL) {
578                 ret = -ENOMEM;
579                 goto cleanup;
580         }
581         vdev->cdev->ops = &v4l2_fops;
582         vdev->cdev->owner = owner;
583         ret = cdev_add(vdev->cdev, MKDEV(VIDEO_MAJOR, vdev->minor), 1);
584         if (ret < 0) {
585                 printk(KERN_ERR "%s: cdev_add failed\n", __func__);
586                 kfree(vdev->cdev);
587                 vdev->cdev = NULL;
588                 goto cleanup;
589         }
590
591         /* Part 4: register the device with sysfs */
592         vdev->dev.class = &video_class;
593         vdev->dev.devt = MKDEV(VIDEO_MAJOR, vdev->minor);
594         if (vdev->parent)
595                 vdev->dev.parent = vdev->parent;
596         dev_set_name(&vdev->dev, "%s%d", name_base, vdev->num);
597         ret = device_register(&vdev->dev);
598         if (ret < 0) {
599                 printk(KERN_ERR "%s: device_register failed\n", __func__);
600                 goto cleanup;
601         }
602         /* Register the release callback that will be called when the last
603            reference to the device goes away. */
604         vdev->dev.release = v4l2_device_release;
605
606         if (nr != -1 && nr != vdev->num && warn_if_nr_in_use)
607                 printk(KERN_WARNING "%s: requested %s%d, got %s\n", __func__,
608                         name_base, nr, video_device_node_name(vdev));
609 #if defined(CONFIG_MEDIA_CONTROLLER)
610         /* Part 5: Register the entity. */
611         if (vdev->v4l2_dev && vdev->v4l2_dev->mdev) {
612                 vdev->entity.type = MEDIA_ENT_T_DEVNODE_V4L;
613                 vdev->entity.name = vdev->name;
614                 vdev->entity.v4l.major = VIDEO_MAJOR;
615                 vdev->entity.v4l.minor = vdev->minor;
616                 ret = media_device_register_entity(vdev->v4l2_dev->mdev,
617                         &vdev->entity);
618                 if (ret < 0)
619                         printk(KERN_WARNING
620                                "%s: media_device_register_entity failed\n",
621                                __func__);
622         }
623 #endif
624         /* Part 6: Activate this minor. The char device can now be used. */
625         set_bit(V4L2_FL_REGISTERED, &vdev->flags);
626         mutex_lock(&videodev_lock);
627         video_device[vdev->minor] = vdev;
628         mutex_unlock(&videodev_lock);
629
630         return 0;
631
632 cleanup:
633         mutex_lock(&videodev_lock);
634         if (vdev->cdev)
635                 cdev_del(vdev->cdev);
636         devnode_clear(vdev);
637         mutex_unlock(&videodev_lock);
638         /* Mark this video device as never having been registered. */
639         vdev->minor = -1;
640         return ret;
641 }
642 EXPORT_SYMBOL(__video_register_device);
643
644 /**
645  *      video_unregister_device - unregister a video4linux device
646  *      @vdev: the device to unregister
647  *
648  *      This unregisters the passed device. Future open calls will
649  *      be met with errors.
650  */
651 void video_unregister_device(struct video_device *vdev)
652 {
653         /* Check if vdev was ever registered at all */
654         if (!vdev || !video_is_registered(vdev))
655                 return;
656
657 #if defined(CONFIG_MEDIA_CONTROLLER)
658         if (vdev->v4l2_dev && vdev->v4l2_dev->mdev)
659                 media_device_unregister_entity(&vdev->entity);
660 #endif
661
662         mutex_lock(&videodev_lock);
663         /* This must be in a critical section to prevent a race with v4l2_open.
664          * Once this bit has been cleared video_get may never be called again.
665          */
666         clear_bit(V4L2_FL_REGISTERED, &vdev->flags);
667         mutex_unlock(&videodev_lock);
668         device_unregister(&vdev->dev);
669 }
670 EXPORT_SYMBOL(video_unregister_device);
671
672 /*
673  *      Initialise video for linux
674  */
675 static int __init videodev_init(void)
676 {
677         dev_t dev = MKDEV(VIDEO_MAJOR, 0);
678         int ret;
679
680         printk(KERN_INFO "Linux video capture interface: v2.00\n");
681         ret = register_chrdev_region(dev, VIDEO_NUM_DEVICES, VIDEO_NAME);
682         if (ret < 0) {
683                 printk(KERN_WARNING "videodev: unable to get major %d\n",
684                                 VIDEO_MAJOR);
685                 return ret;
686         }
687
688         ret = class_register(&video_class);
689         if (ret < 0) {
690                 unregister_chrdev_region(dev, VIDEO_NUM_DEVICES);
691                 printk(KERN_WARNING "video_dev: class_register failed\n");
692                 return -EIO;
693         }
694
695         return 0;
696 }
697
698 static void __exit videodev_exit(void)
699 {
700         dev_t dev = MKDEV(VIDEO_MAJOR, 0);
701
702         class_unregister(&video_class);
703         unregister_chrdev_region(dev, VIDEO_NUM_DEVICES);
704 }
705
706 module_init(videodev_init)
707 module_exit(videodev_exit)
708
709 MODULE_AUTHOR("Alan Cox, Mauro Carvalho Chehab <mchehab@infradead.org>");
710 MODULE_DESCRIPTION("Device registrar for Video4Linux drivers v2");
711 MODULE_LICENSE("GPL");
712 MODULE_ALIAS_CHARDEV_MAJOR(VIDEO_MAJOR);
713
714
715 /*
716  * Local variables:
717  * c-basic-offset: 8
718  * End:
719  */