This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / drivers / media / dvb / dvb-core / dvbdev.c
index 837d16a..686ffc2 100644 (file)
 #include <linux/errno.h>
 #include <linux/string.h>
 #include <linux/module.h>
-#include <linux/moduleparam.h>
 #include <linux/kernel.h>
 #include <linux/sched.h>
 #include <linux/init.h>
 #include <linux/slab.h>
-#include <linux/device.h>
 
 #include "dvbdev.h"
+#include "dvb_functions.h"
 
-static int dvbdev_debug;
-
-module_param(dvbdev_debug, int, 0644);
-MODULE_PARM_DESC(dvbdev_debug, "Turn on/off device debugging (default:off).");
-
+static int dvbdev_debug = 0;
 #define dprintk if (dvbdev_debug) printk
 
 static LIST_HEAD(dvb_adapter_list);
 static DECLARE_MUTEX(dvbdev_register_lock);
 
-static const char * const dnames[] = {
+
+static char *dnames[] = { 
         "video", "audio", "sec", "frontend", "demux", "dvr", "ca",
        "net", "osd"
 };
@@ -53,9 +49,6 @@ static const char * const dnames[] = {
 #define DVB_MAX_IDS              4
 #define nums2minor(num,type,id)  ((num << 6) | (id << 4) | type)
 
-struct class_simple *dvb_class;
-EXPORT_SYMBOL(dvb_class);
-
 static struct dvb_device* dvbdev_find_device (int minor)
 {
        struct list_head *entry;
@@ -132,7 +125,6 @@ int dvb_generic_open(struct inode *inode, struct file *file)
        dvbdev->users--;
        return 0;
 }
-EXPORT_SYMBOL(dvb_generic_open);
 
 
 int dvb_generic_release(struct inode *inode, struct file *file)
@@ -151,7 +143,6 @@ int dvb_generic_release(struct inode *inode, struct file *file)
        dvbdev->users++;
        return 0;
 }
-EXPORT_SYMBOL(dvb_generic_release);
 
 
 int dvb_generic_ioctl(struct inode *inode, struct file *file,
@@ -167,7 +158,6 @@ int dvb_generic_ioctl(struct inode *inode, struct file *file,
 
        return dvb_usercopy (inode, file, cmd, arg, dvbdev->kernel_ioctl);
 }
-EXPORT_SYMBOL(dvb_generic_ioctl);
 
 
 static int dvbdev_get_free_id (struct dvb_adapter *adap, int type)
@@ -229,16 +219,12 @@ int dvb_register_device(struct dvb_adapter *adap, struct dvb_device **pdvbdev,
                        S_IFCHR | S_IRUSR | S_IWUSR,
                        "dvb/adapter%d/%s%d", adap->num, dnames[type], id);
 
-       class_simple_device_add(dvb_class, MKDEV(DVB_MAJOR, nums2minor(adap->num, type, id)),
-                               NULL, "dvb%d.%s%d", adap->num, dnames[type], id);
-
        dprintk("DVB: register adapter%d/%s%d @ minor: %i (0x%02x)\n",
                adap->num, dnames[type], id, nums2minor(adap->num, type, id),
                nums2minor(adap->num, type, id));
 
        return 0;
 }
-EXPORT_SYMBOL(dvb_register_device);
 
 
 void dvb_unregister_device(struct dvb_device *dvbdev)
@@ -249,13 +235,9 @@ void dvb_unregister_device(struct dvb_device *dvbdev)
                devfs_remove("dvb/adapter%d/%s%d", dvbdev->adapter->num,
                                dnames[dvbdev->type], dvbdev->id);
 
-       class_simple_device_remove(MKDEV(DVB_MAJOR, nums2minor(dvbdev->adapter->num,
-                                       dvbdev->type, dvbdev->id)));
-
                list_del(&dvbdev->list_head);
                kfree(dvbdev);
        }
-EXPORT_SYMBOL(dvb_unregister_device);
 
 
 static int dvbdev_get_free_adapter_num (void)
@@ -314,101 +296,28 @@ int dvb_register_adapter(struct dvb_adapter **padap, const char *name, struct mo
 
        return num;
 }
-EXPORT_SYMBOL(dvb_register_adapter);
 
 
 int dvb_unregister_adapter(struct dvb_adapter *adap)
 {
-       devfs_remove("dvb/adapter%d", adap->num);
-
        if (down_interruptible (&dvbdev_register_lock))
                return -ERESTARTSYS;
+        devfs_remove("dvb/adapter%d", adap->num);
        list_del (&adap->list_head);
        up (&dvbdev_register_lock);
        kfree (adap);
        return 0;
 }
-EXPORT_SYMBOL(dvb_unregister_adapter);
-
-/* if the miracle happens and "generic_usercopy()" is included into
-   the kernel, then this can vanish. please don't make the mistake and
-   define this as video_usercopy(). this will introduce a dependecy
-   to the v4l "videodev.o" module, which is unnecessary for some
-   cards (ie. the budget dvb-cards don't need the v4l module...) */
-int dvb_usercopy(struct inode *inode, struct file *file,
-                    unsigned int cmd, unsigned long arg,
-                    int (*func)(struct inode *inode, struct file *file,
-                    unsigned int cmd, void *arg))
-{
-        char    sbuf[128];
-        void    *mbuf = NULL;
-        void    *parg = NULL;
-        int     err  = -EINVAL;
-
-        /*  Copy arguments into temp kernel buffer  */
-        switch (_IOC_DIR(cmd)) {
-        case _IOC_NONE:
-               /*
-                * For this command, the pointer is actually an integer
-                * argument.
-                */
-               parg = (void *) arg;
-               break;
-        case _IOC_READ: /* some v4l ioctls are marked wrong ... */
-        case _IOC_WRITE:
-        case (_IOC_WRITE | _IOC_READ):
-                if (_IOC_SIZE(cmd) <= sizeof(sbuf)) {
-                        parg = sbuf;
-                } else {
-                        /* too big to allocate from stack */
-                        mbuf = kmalloc(_IOC_SIZE(cmd),GFP_KERNEL);
-                        if (NULL == mbuf)
-                                return -ENOMEM;
-                        parg = mbuf;
-                }
 
-                err = -EFAULT;
-                if (copy_from_user(parg, (void __user *)arg, _IOC_SIZE(cmd)))
-                        goto out;
-                break;
-        }
-
-        /* call driver */
-        if ((err = func(inode, file, cmd, parg)) == -ENOIOCTLCMD)
-                err = -EINVAL;
-
-        if (err < 0)
-                goto out;
-
-        /*  Copy results into user buffer  */
-        switch (_IOC_DIR(cmd))
-        {
-        case _IOC_READ:
-        case (_IOC_WRITE | _IOC_READ):
-                if (copy_to_user((void __user *)arg, parg, _IOC_SIZE(cmd)))
-                        err = -EFAULT;
-                break;
-        }
-
-out:
-        if (mbuf)
-                kfree(mbuf);
-
-        return err;
-}
 
 static int __init init_dvbdev(void)
 {
        int retval;
-
-       if ((retval = register_chrdev(DVB_MAJOR,"DVB", &dvb_device_fops)))
-               printk("dvb-core: unable to get major %d\n", DVB_MAJOR);
-
        devfs_mk_dir("dvb");
 
-       dvb_class = class_simple_create(THIS_MODULE, "dvb");
-       if (IS_ERR(dvb_class))
-               return PTR_ERR(dvb_class);
+       retval = register_chrdev(DVB_MAJOR,"DVB", &dvb_device_fops);
+       if (retval)
+               printk("video_dev: unable to get major %d\n", DVB_MAJOR);
 
        return retval;
 }
@@ -418,7 +327,6 @@ static void __exit exit_dvbdev(void)
 {
        unregister_chrdev(DVB_MAJOR, "DVB");
         devfs_remove("dvb");
-       class_simple_destroy(dvb_class);
 }
 
 module_init(init_dvbdev);
@@ -428,3 +336,6 @@ MODULE_DESCRIPTION("DVB Core Driver");
 MODULE_AUTHOR("Marcus Metzler, Ralph Metzler, Holger Waechtler");
 MODULE_LICENSE("GPL");
 
+MODULE_PARM(dvbdev_debug,"i");
+MODULE_PARM_DESC(dvbdev_debug, "enable verbose debug messages");
+