linux 2.6.16.38 w/ vs2.0.3-rc1
[linux-2.6.git] / include / linux / cdev.h
index 2216638..8da37e2 100644 (file)
@@ -5,13 +5,13 @@
 struct cdev {
        struct kobject kobj;
        struct module *owner;
-       const struct file_operations *ops;
+       struct file_operations *ops;
        struct list_head list;
        dev_t dev;
        unsigned int count;
 };
 
-void cdev_init(struct cdev *, const struct file_operations *);
+void cdev_init(struct cdev *, struct file_operations *);
 
 struct cdev *cdev_alloc(void);