Searched refs:maj (Results 1 – 1 of 1) sorted by relevance
/init/ |
D | do_mounts.c | 251 unsigned maj, min, offset; in name_to_dev_t() local 254 if ((sscanf(name, "%u:%u%c", &maj, &min, &dummy) == 2) || in name_to_dev_t() 255 (sscanf(name, "%u:%u:%u:%c", &maj, &min, &offset, &dummy) == 3)) { in name_to_dev_t() 256 res = MKDEV(maj, min); in name_to_dev_t() 257 if (maj != MAJOR(res) || min != MINOR(res)) in name_to_dev_t()
|