···1364136413651365 hvcs_tty_driver->driver_name = hvcs_driver_name;13661366 hvcs_tty_driver->name = hvcs_device_node;13671367- hvcs_tty_driver->devfs_name = hvcs_device_node;1368136713691368 /*13701369 * We'll let the system assign us a major number, indicated by leaving
···4141#define GIGASET_MINORS 14242#define GIGASET_MINOR 164343#define GIGASET_MODULENAME "bas_gigaset"4444-#define GIGASET_DEVFSNAME "gig/bas/"4544#define GIGASET_DEVNAME "ttyGB"46454746/* length limit according to Siemens 3070usb-protokoll.doc ch. 2.1 */···23482349 /* allocate memory for our driver state and intialize it */23492350 if ((driver = gigaset_initdriver(GIGASET_MINOR, GIGASET_MINORS,23502351 GIGASET_MODULENAME, GIGASET_DEVNAME,23512351- GIGASET_DEVFSNAME, &gigops,23522352- THIS_MODULE)) == NULL)23522352+ &gigops, THIS_MODULE)) == NULL)23532353 goto error;2354235423552355 /* allocate memory for our device state and intialize it */
+1-3
drivers/isdn/gigaset/common.c
···10921092 * minors Number of minors this driver can handle10931093 * procname Name of the driver10941094 * devname Name of the device files (prefix without minor number)10951095- * devfsname Devfs name of the device files without %d10961095 * return value:10971096 * Pointer to the gigaset_driver structure on success, NULL on failure.10981097 */10991098struct gigaset_driver *gigaset_initdriver(unsigned minor, unsigned minors,11001099 const char *procname,11011100 const char *devname,11021102- const char *devfsname,11031101 const struct gigaset_ops *ops,11041102 struct module *owner)11051103{···11371139 drv->cs[i].minor_index = i;11381140 }1139114111401140- gigaset_if_initdriver(drv, procname, devname, devfsname);11421142+ gigaset_if_initdriver(drv, procname, devname);1141114311421144 spin_lock_irqsave(&driver_lock, flags);11431145 list_add(&drv->list, &drivers);
···17451745 /* Not all of this is exactly right for us. */1746174617471747 serial_driver->owner = THIS_MODULE;17481748- serial_driver->devfs_name = "tts/";17491748 serial_driver->name = "ttyS";17501749 serial_driver->major = TTY_MAJOR;17511750 serial_driver->minor_start = 64;