Merge tag 'omap-fixes-audio-clock-and-modem-signed' of git://git.kernel.org/pub/scm...
[linux-2.6-block.git] / include / linux / root_dev.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2#ifndef _ROOT_DEV_H_
3#define _ROOT_DEV_H_
4
5#include <linux/major.h>
3e705f27
RK
6#include <linux/types.h>
7#include <linux/kdev_t.h>
1da177e4
LT
8
9enum {
10 Root_NFS = MKDEV(UNNAMED_MAJOR, 255),
8eecd1c2 11 Root_CIFS = MKDEV(UNNAMED_MAJOR, 254),
07d63cbb 12 Root_Generic = MKDEV(UNNAMED_MAJOR, 253),
1da177e4 13 Root_RAM0 = MKDEV(RAMDISK_MAJOR, 0),
1da177e4
LT
14};
15
16extern dev_t ROOT_DEV;
17
18#endif