Searched refs:MKDEV (Results 1 - 4 of 4) sorted by relevance
/include/linux/ |
H A D | root_dev.h | 9 Root_NFS = MKDEV(UNNAMED_MAJOR, 255), 10 Root_RAM0 = MKDEV(RAMDISK_MAJOR, 0), 11 Root_RAM1 = MKDEV(RAMDISK_MAJOR, 1), 12 Root_FD0 = MKDEV(FLOPPY_MAJOR, 0), 13 Root_HDA1 = MKDEV(IDE0_MAJOR, 1), 14 Root_HDA2 = MKDEV(IDE0_MAJOR, 2), 15 Root_SDA1 = MKDEV(SCSI_DISK0_MAJOR, 1), 16 Root_SDA2 = MKDEV(SCSI_DISK0_MAJOR, 2), 17 Root_HDC1 = MKDEV(IDE1_MAJOR, 1), 18 Root_SR0 = MKDEV(SCSI_CDROM_MAJO [all...] |
H A D | kdev_t.h | 11 #define MKDEV(ma,mi) (((ma) << MINORBITS) | (mi)) macro 35 return MKDEV((val >> 8) & 255, val & 255); 54 return MKDEV(major, minor);
|
H A D | genhd.h | 723 dev_t devt = MKDEV(0, 0);
|
/include/uapi/linux/ |
H A D | kdev_t.h | 6 Some programs want their definitions of MAJOR and MINOR and MKDEV 11 #define MKDEV(ma,mi) ((ma)<<8 | (mi)) macro
|
Completed in 66 milliseconds