static int device_add_attrs(struct device *dev)
 {
-       struct class *class = dev->class;
+       const struct class *class = dev->class;
        const struct device_type *type = dev->type;
        int error;
 
 
 static void device_remove_attrs(struct device *dev)
 {
-       struct class *class = dev->class;
+       const struct class *class = dev->class;
        const struct device_type *type = dev->type;
 
        if (dev->physical_location) {
 
 struct class_dir {
        struct kobject kobj;
-       struct class *class;
+       const struct class *class;
 };
 
 #define to_class_dir(obj) container_of(obj, struct class_dir, kobj)
 };
 
 static struct kobject *
-class_dir_create_and_add(struct class *class, struct kobject *parent_kobj)
+class_dir_create_and_add(const struct class *class, struct kobject *parent_kobj)
 {
        struct class_dir *dir;
        int retval;
                                     kgid_t kgid)
 {
        struct kobject *kobj = &dev->kobj;
-       struct class *class = dev->class;
+       const struct class *class = dev->class;
        const struct device_type *type = dev->type;
        int error;
 
 
        spinlock_t              devres_lock;
        struct list_head        devres_head;
 
-       struct class            *class;
+       const struct class      *class;
        const struct attribute_group **groups;  /* optional groups */
 
        void    (*release)(struct device *dev);