tag | line | file | source code |
---|---|---|---|
MINORBITS | 65 | include/linux/kdev_t.h | #define MINORMASK ((1<<MINORBITS) - 1) |
MINORBITS | 69 | include/linux/kdev_t.h | #define MAJOR(dev) ((dev) >> MINORBITS) |
MINORBITS | 73 | include/linux/kdev_t.h | #define MKDEV(ma,mi) (((ma) << MINORBITS) | (mi)) |