Loading arch/sparc64/solaris/socksys.c +0 −2 Original line number Diff line number Diff line Loading @@ -190,8 +190,6 @@ init_socksys(void) return ret; } devfs_mk_cdev(MKDEV(30, 0), S_IFCHR|S_IRUSR|S_IWUSR, "socksys"); file = fcheck(ret); /* N.B. Is this valid? Suppose the f_ops are in a module ... */ socksys_file_ops = *file->f_op; Loading drivers/block/acsi_slm.c +0 −4 Original line number Diff line number Diff line Loading @@ -1005,10 +1005,6 @@ int slm_init( void ) BufferP = SLMBuffer; SLMState = IDLE; for (i = 0; i < MAX_SLM; i++) { devfs_mk_cdev(MKDEV(ACSI_MAJOR, i), S_IFCHR|S_IRUSR|S_IWUSR, "slm/%d", i); } return 0; } Loading drivers/block/paride/pg.c +1 −10 Original line number Diff line number Diff line Loading @@ -676,22 +676,13 @@ static int __init pg_init(void) } for (unit = 0; unit < PG_UNITS; unit++) { struct pg *dev = &devices[unit]; if (dev->present) { if (dev->present) class_device_create(pg_class, NULL, MKDEV(major, unit), NULL, "pg%u", unit); err = devfs_mk_cdev(MKDEV(major, unit), S_IFCHR | S_IRUSR | S_IWUSR, "pg/%u", unit); if (err) goto out_class; } } err = 0; goto out; out_class: class_device_destroy(pg_class, MKDEV(major, unit)); class_destroy(pg_class); out_chrdev: unregister_chrdev(major, "pg"); out: Loading drivers/block/paride/pt.c +0 −16 Original line number Diff line number Diff line Loading @@ -975,27 +975,11 @@ static int __init pt_init(void) if (pt[unit].present) { class_device_create(pt_class, NULL, MKDEV(major, unit), NULL, "pt%d", unit); err = devfs_mk_cdev(MKDEV(major, unit), S_IFCHR | S_IRUSR | S_IWUSR, "pt/%d", unit); if (err) { class_device_destroy(pt_class, MKDEV(major, unit)); goto out_class; } class_device_create(pt_class, NULL, MKDEV(major, unit + 128), NULL, "pt%dn", unit); err = devfs_mk_cdev(MKDEV(major, unit + 128), S_IFCHR | S_IRUSR | S_IWUSR, "pt/%dn", unit); if (err) { class_device_destroy(pt_class, MKDEV(major, unit + 128)); goto out_class; } } goto out; out_class: class_destroy(pt_class); out_chrdev: unregister_chrdev(major, "pt"); out: Loading drivers/char/dsp56k.c +0 −8 Original line number Diff line number Diff line Loading @@ -518,17 +518,9 @@ static int __init dsp56k_init_driver(void) } class_device_create(dsp56k_class, NULL, MKDEV(DSP56K_MAJOR, 0), NULL, "dsp56k"); err = devfs_mk_cdev(MKDEV(DSP56K_MAJOR, 0), S_IFCHR | S_IRUSR | S_IWUSR, "dsp56k"); if(err) goto out_class; printk(banner); goto out; out_class: class_device_destroy(dsp56k_class, MKDEV(DSP56K_MAJOR, 0)); class_destroy(dsp56k_class); out_chrdev: unregister_chrdev(DSP56K_MAJOR, "dsp56k"); out: Loading Loading
arch/sparc64/solaris/socksys.c +0 −2 Original line number Diff line number Diff line Loading @@ -190,8 +190,6 @@ init_socksys(void) return ret; } devfs_mk_cdev(MKDEV(30, 0), S_IFCHR|S_IRUSR|S_IWUSR, "socksys"); file = fcheck(ret); /* N.B. Is this valid? Suppose the f_ops are in a module ... */ socksys_file_ops = *file->f_op; Loading
drivers/block/acsi_slm.c +0 −4 Original line number Diff line number Diff line Loading @@ -1005,10 +1005,6 @@ int slm_init( void ) BufferP = SLMBuffer; SLMState = IDLE; for (i = 0; i < MAX_SLM; i++) { devfs_mk_cdev(MKDEV(ACSI_MAJOR, i), S_IFCHR|S_IRUSR|S_IWUSR, "slm/%d", i); } return 0; } Loading
drivers/block/paride/pg.c +1 −10 Original line number Diff line number Diff line Loading @@ -676,22 +676,13 @@ static int __init pg_init(void) } for (unit = 0; unit < PG_UNITS; unit++) { struct pg *dev = &devices[unit]; if (dev->present) { if (dev->present) class_device_create(pg_class, NULL, MKDEV(major, unit), NULL, "pg%u", unit); err = devfs_mk_cdev(MKDEV(major, unit), S_IFCHR | S_IRUSR | S_IWUSR, "pg/%u", unit); if (err) goto out_class; } } err = 0; goto out; out_class: class_device_destroy(pg_class, MKDEV(major, unit)); class_destroy(pg_class); out_chrdev: unregister_chrdev(major, "pg"); out: Loading
drivers/block/paride/pt.c +0 −16 Original line number Diff line number Diff line Loading @@ -975,27 +975,11 @@ static int __init pt_init(void) if (pt[unit].present) { class_device_create(pt_class, NULL, MKDEV(major, unit), NULL, "pt%d", unit); err = devfs_mk_cdev(MKDEV(major, unit), S_IFCHR | S_IRUSR | S_IWUSR, "pt/%d", unit); if (err) { class_device_destroy(pt_class, MKDEV(major, unit)); goto out_class; } class_device_create(pt_class, NULL, MKDEV(major, unit + 128), NULL, "pt%dn", unit); err = devfs_mk_cdev(MKDEV(major, unit + 128), S_IFCHR | S_IRUSR | S_IWUSR, "pt/%dn", unit); if (err) { class_device_destroy(pt_class, MKDEV(major, unit + 128)); goto out_class; } } goto out; out_class: class_destroy(pt_class); out_chrdev: unregister_chrdev(major, "pt"); out: Loading
drivers/char/dsp56k.c +0 −8 Original line number Diff line number Diff line Loading @@ -518,17 +518,9 @@ static int __init dsp56k_init_driver(void) } class_device_create(dsp56k_class, NULL, MKDEV(DSP56K_MAJOR, 0), NULL, "dsp56k"); err = devfs_mk_cdev(MKDEV(DSP56K_MAJOR, 0), S_IFCHR | S_IRUSR | S_IWUSR, "dsp56k"); if(err) goto out_class; printk(banner); goto out; out_class: class_device_destroy(dsp56k_class, MKDEV(DSP56K_MAJOR, 0)); class_destroy(dsp56k_class); out_chrdev: unregister_chrdev(DSP56K_MAJOR, "dsp56k"); out: Loading