/Linux-v5.10/include/linux/ |
D | root_dev.h | 10 Root_NFS = MKDEV(UNNAMED_MAJOR, 255), 11 Root_CIFS = MKDEV(UNNAMED_MAJOR, 254), 12 Root_RAM0 = MKDEV(RAMDISK_MAJOR, 0), 13 Root_RAM1 = MKDEV(RAMDISK_MAJOR, 1), 14 Root_FD0 = MKDEV(FLOPPY_MAJOR, 0), 15 Root_HDA1 = MKDEV(IDE0_MAJOR, 1), 16 Root_HDA2 = MKDEV(IDE0_MAJOR, 2), 17 Root_SDA1 = MKDEV(SCSI_DISK0_MAJOR, 1), 18 Root_SDA2 = MKDEV(SCSI_DISK0_MAJOR, 2), 19 Root_HDC1 = MKDEV(IDE1_MAJOR, 1), [all …]
|
D | kdev_t.h | 12 #define MKDEV(ma,mi) (((ma) << MINORBITS) | (mi)) macro 36 return MKDEV((val >> 8) & 255, val & 255); in old_decode_dev() 50 return MKDEV(major, minor); in new_decode_dev()
|
/Linux-v5.10/arch/mips/kernel/ |
D | rtlx-cmp.c | 77 dev = device_create(mt_class, NULL, MKDEV(major, i), NULL, in rtlx_module_init() 81 device_destroy(mt_class, MKDEV(major, i)); in rtlx_module_init() 105 device_destroy(mt_class, MKDEV(major, i)); in rtlx_module_init() 117 device_destroy(mt_class, MKDEV(major, i)); in rtlx_module_exit()
|
D | rtlx-mt.c | 98 dev = device_create(mt_class, NULL, MKDEV(major, i), NULL, in rtlx_module_init() 102 device_destroy(mt_class, MKDEV(major, i)); in rtlx_module_init() 130 device_destroy(mt_class, MKDEV(major, i)); in rtlx_module_init() 142 device_destroy(mt_class, MKDEV(major, i)); in rtlx_module_exit()
|
/Linux-v5.10/drivers/dca/ |
D | dca-sysfs.c | 25 cd = device_create(dca_class, dca->cd, MKDEV(0, slot + 1), NULL, in dca_sysfs_add_req() 32 device_destroy(dca_class, MKDEV(0, slot + 1)); in dca_sysfs_remove_req() 52 cd = device_create(dca_class, dev, MKDEV(0, 0), NULL, "dca%d", dca->id); in dca_sysfs_add_provider()
|
/Linux-v5.10/drivers/char/ |
D | raw.c | 138 dev_t dev = MKDEV(major, minor); in bind_set() 139 dev_t raw = MKDEV(RAW_MAJOR, number); in bind_set() 308 dev_t dev = MKDEV(RAW_MAJOR, 0); in raw_init() 341 device_create(raw_class, NULL, MKDEV(RAW_MAJOR, 0), NULL, "rawctl"); in raw_init() 354 device_destroy(raw_class, MKDEV(RAW_MAJOR, 0)); in raw_exit() 357 unregister_chrdev_region(MKDEV(RAW_MAJOR, 0), max_raw_minors); in raw_exit()
|
D | scx200_gpio.c | 99 devid = MKDEV(major, 0); in scx200_gpio_init() 128 unregister_chrdev_region(MKDEV(major, 0), MAX_PINS); in scx200_gpio_cleanup()
|
D | misc.c | 203 dev = MKDEV(MISC_MAJOR, misc->minor); in misc_register() 248 device_destroy(misc_class, MKDEV(MISC_MAJOR, misc->minor)); in misc_deregister()
|
/Linux-v5.10/drivers/tty/vt/ |
D | vc_screen.c | 786 device_create(vc_class, NULL, MKDEV(VCS_MAJOR, index + 1), NULL, in vcs_make_sysfs() 788 device_create(vc_class, NULL, MKDEV(VCS_MAJOR, index + 65), NULL, in vcs_make_sysfs() 790 device_create(vc_class, NULL, MKDEV(VCS_MAJOR, index + 129), NULL, in vcs_make_sysfs() 796 device_destroy(vc_class, MKDEV(VCS_MAJOR, index + 1)); in vcs_remove_sysfs() 797 device_destroy(vc_class, MKDEV(VCS_MAJOR, index + 65)); in vcs_remove_sysfs() 798 device_destroy(vc_class, MKDEV(VCS_MAJOR, index + 129)); in vcs_remove_sysfs() 809 device_create(vc_class, NULL, MKDEV(VCS_MAJOR, 0), NULL, "vcs"); in vcs_init() 810 device_create(vc_class, NULL, MKDEV(VCS_MAJOR, 64), NULL, "vcsu"); in vcs_init() 811 device_create(vc_class, NULL, MKDEV(VCS_MAJOR, 128), NULL, "vcsa"); in vcs_init()
|
/Linux-v5.10/fs/pstore/ |
D | pmsg.c | 73 pmsg_device = device_create(pmsg_class, NULL, MKDEV(pmsg_major, 0), in pstore_register_pmsg() 91 device_destroy(pmsg_class, MKDEV(pmsg_major, 0)); in pstore_unregister_pmsg()
|
/Linux-v5.10/drivers/block/rnbd/ |
D | rnbd-srv-sysfs.c | 188 MKDEV(0, 0), NULL, "ctl"); in rnbd_srv_create_sysfs_files() 202 device_destroy(rnbd_dev_class, MKDEV(0, 0)); in rnbd_srv_create_sysfs_files() 213 device_destroy(rnbd_dev_class, MKDEV(0, 0)); in rnbd_srv_destroy_sysfs_files()
|
/Linux-v5.10/drivers/tty/ |
D | tty_audit.c | 42 buf->dev = MKDEV(0, 0); in tty_audit_buf_alloc() 140 dev = MKDEV(tty->driver->major, tty->driver->minor_start) + tty->index; in tty_audit_tiocsti() 227 dev = MKDEV(tty->driver->major, tty->driver->minor_start) + tty->index; in tty_audit_add_data()
|
D | tty_io.c | 324 dev_t base = MKDEV(p->major, p->minor_start); in get_tty_driver() 370 *number = MKDEV(p->major, p->minor_start + index); in tty_dev_name_to_number() 1807 if (device != MKDEV(TTYAUX_MAJOR, 0)) in tty_open_current_tty() 1846 case MKDEV(TTY_MAJOR, 0): { in tty_lookup_driver() 1853 case MKDEV(TTYAUX_MAJOR, 1): { in tty_lookup_driver() 2077 (IS_ENABLED(CONFIG_VT) && device == MKDEV(TTY_MAJOR, 0)) || in tty_open() 2078 device == MKDEV(TTYAUX_MAJOR, 1) || in tty_open() 3118 dev_t devt = MKDEV(driver->major, driver->minor_start) + index; in tty_register_device_attr() 3196 MKDEV(driver->major, driver->minor_start) + index); in tty_unregister_device() 3335 dev = MKDEV(driver->major, driver->minor_start); in tty_register_driver() [all …]
|
/Linux-v5.10/drivers/staging/vme/devices/ |
D | vme_user.c | 543 err = register_chrdev_region(MKDEV(VME_MAJOR, 0), VME_DEVS, in vme_user_probe() 559 err = cdev_add(vme_user_cdev, MKDEV(VME_MAJOR, 0), VME_DEVS); in vme_user_probe() 645 MKDEV(VME_MAJOR, i), NULL, in vme_user_probe() 659 device_destroy(vme_user_sysfs_class, MKDEV(VME_MAJOR, i)); in vme_user_probe() 686 unregister_chrdev_region(MKDEV(VME_MAJOR, 0), VME_DEVS); in vme_user_probe() 699 device_destroy(vme_user_sysfs_class, MKDEV(VME_MAJOR, i)); in vme_user_remove() 719 unregister_chrdev_region(MKDEV(VME_MAJOR, 0), VME_DEVS); in vme_user_remove()
|
/Linux-v5.10/fs/ |
D | char_dev.c | 207 next = MKDEV(MAJOR(n)+1, 0); in register_chrdev_region() 219 next = MKDEV(MAJOR(n)+1, 0); in register_chrdev_region() 243 *dev = MKDEV(cd->major, cd->baseminor); in alloc_chrdev_region() 288 err = cdev_add(cdev, MKDEV(cd->major, baseminor), count); in __register_chrdev() 317 next = MKDEV(MAJOR(n)+1, 0); in unregister_chrdev_region()
|
/Linux-v5.10/arch/x86/kernel/ |
D | cpuid.c | 132 dev = device_create(cpuid_class, NULL, MKDEV(CPUID_MAJOR, cpu), NULL, in cpuid_device_create() 139 device_destroy(cpuid_class, MKDEV(CPUID_MAJOR, cpu)); in cpuid_device_destroy()
|
/Linux-v5.10/include/uapi/linux/ |
D | kdev_t.h | 12 #define MKDEV(ma,mi) ((ma)<<8 | (mi)) macro
|
/Linux-v5.10/fs/proc/ |
D | proc_tty.c | 72 dev_t from = MKDEV(p->major, p->minor_start); in show_tty_driver() 96 dev_t next = MKDEV(MAJOR(from)+1, 0); in show_tty_driver()
|
/Linux-v5.10/drivers/usb/core/ |
D | file.c | 204 MKDEV(USB_MAJOR, minor), class_driver, in usb_register_dev() 237 device_destroy(usb_class->class, MKDEV(USB_MAJOR, intf->minor)); in usb_deregister_dev()
|
/Linux-v5.10/init/ |
D | noinitramfs.c | 26 new_encode_dev(MKDEV(5, 1))); in default_rootfs()
|
/Linux-v5.10/drivers/char/pcmcia/ |
D | scr24x_cs.c | 269 ret = cdev_add(&dev->c_dev, MKDEV(MAJOR(scr24x_devt), dev->devno), 1); in scr24x_probe() 279 device_create(scr24x_class, NULL, MKDEV(MAJOR(scr24x_devt), dev->devno), in scr24x_probe() 296 device_destroy(scr24x_class, MKDEV(MAJOR(scr24x_devt), dev->devno)); in scr24x_remove()
|
/Linux-v5.10/drivers/platform/chrome/wilco_ec/ |
D | telemetry.c | 386 dev_data->dev.devt = MKDEV(telem_major, minor); in telem_device_probe() 451 unregister_chrdev_region(MKDEV(telem_major, 0), TELEM_MAX_DEV); in telem_module_init() 461 unregister_chrdev_region(MKDEV(telem_major, 0), TELEM_MAX_DEV); in telem_module_exit()
|
/Linux-v5.10/drivers/s390/char/ |
D | fs3270.c | 531 device_create(class3270, NULL, MKDEV(IBM_FS3270_MAJOR, minor), in fs3270_create_cb() 537 device_destroy(class3270, MKDEV(IBM_FS3270_MAJOR, minor)); in fs3270_destroy_cb() 558 device_create(class3270, NULL, MKDEV(IBM_FS3270_MAJOR, 0), in fs3270_init() 568 device_destroy(class3270, MKDEV(IBM_FS3270_MAJOR, 0)); in fs3270_exit()
|
D | tape_char.c | 71 MKDEV(tapechar_major, device->first_minor), in tapechar_setup_device() 79 MKDEV(tapechar_major, device->first_minor + 1), in tapechar_setup_device() 489 unregister_chrdev_region(MKDEV(tapechar_major, 0), 256); in tapechar_exit()
|
/Linux-v5.10/drivers/crypto/qat/qat_common/ |
D | adf_ctl_drv.c | 40 device_destroy(adf_ctl_drv.drv_class, MKDEV(adf_ctl_drv.major, 0)); in adf_chr_drv_destroy() 43 unregister_chrdev_region(MKDEV(adf_ctl_drv.major, 0), 1); in adf_chr_drv_destroy() 69 MKDEV(adf_ctl_drv.major, 0), in adf_chr_drv_create()
|