[PATCH] class: convert drivers/char/* to use the new class api instead of class_simple
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
deb3697037
commit
ca8eca6884
@@ -856,7 +856,7 @@ static const struct {
|
||||
{11,"kmsg", S_IRUGO | S_IWUSR, &kmsg_fops},
|
||||
};
|
||||
|
||||
static struct class_simple *mem_class;
|
||||
static struct class *mem_class;
|
||||
|
||||
static int __init chr_dev_init(void)
|
||||
{
|
||||
@@ -865,10 +865,9 @@ static int __init chr_dev_init(void)
|
||||
if (register_chrdev(MEM_MAJOR,"mem",&memory_fops))
|
||||
printk("unable to get major %d for memory devs\n", MEM_MAJOR);
|
||||
|
||||
mem_class = class_simple_create(THIS_MODULE, "mem");
|
||||
mem_class = class_create(THIS_MODULE, "mem");
|
||||
for (i = 0; i < ARRAY_SIZE(devlist); i++) {
|
||||
class_simple_device_add(mem_class,
|
||||
MKDEV(MEM_MAJOR, devlist[i].minor),
|
||||
class_device_create(mem_class, MKDEV(MEM_MAJOR, devlist[i].minor),
|
||||
NULL, devlist[i].name);
|
||||
devfs_mk_cdev(MKDEV(MEM_MAJOR, devlist[i].minor),
|
||||
S_IFCHR | devlist[i].mode, devlist[i].name);
|
||||
|
Reference in New Issue
Block a user