summaryrefslogtreecommitdiff
path: root/include/linux/root_dev.h
blob: bab671b0782f60615e57d5c1172262ab839d16a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _ROOT_DEV_H_
#define _ROOT_DEV_H_

#include <linux/major.h>
#include <linux/types.h>
#include <linux/kdev_t.h>

enum {
	Root_NFS = MKDEV(UNNAMED_MAJOR, 255),
	Root_RAM0 = MKDEV(RAMDISK_MAJOR, 0),
	Root_RAM1 = MKDEV(RAMDISK_MAJOR, 1),
	Root_FD0 = MKDEV(FLOPPY_MAJOR, 0),
	Root_HDA1 = MKDEV(IDE0_MAJOR, 1),
	Root_HDA2 = MKDEV(IDE0_MAJOR, 2),
	Root_SDA1 = MKDEV(SCSI_DISK0_MAJOR, 1),
	Root_SDA2 = MKDEV(SCSI_DISK0_MAJOR, 2),
	Root_HDC1 = MKDEV(IDE1_MAJOR, 1),
	Root_SR0 = MKDEV(SCSI_CDROM_MAJOR, 0),
};

extern dev_t ROOT_DEV;

#endif
3240fd7956fe9525c336947b4473f7276f2b1'>Merge tag 'armsoc-dt64' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/...Linus Torvalds 2016-04-25arm64: dts: uniphier: add reference clock node for PH1-LD20Masahiro Yamada 2016-04-23arm64: dts: uniphier: fix I2C nodes of PH1-LD20Masahiro Yamada 2016-03-18ARM: dts: uniphier: rework UniPhier System Bus nodesMasahiro Yamada 2016-03-18arm64: dts: uniphier: rename PH1-LD10 to PH1-LD20Masahiro Yamada