Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / include / uapi / linux / kdev_t.h
blobe1990f2e97772a8bb798ac9b9a9d2fd3e8790e88
1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2 #ifndef _UAPI_LINUX_KDEV_T_H
3 #define _UAPI_LINUX_KDEV_T_H
4 #ifndef __KERNEL__
6 /*
7 Some programs want their definitions of MAJOR and MINOR and MKDEV
8 from the kernel sources. These must be the externally visible ones.
9 */
10 #define MAJOR(dev) ((dev)>>8)
11 #define MINOR(dev) ((dev) & 0xff)
12 #define MKDEV(ma,mi) ((ma)<<8 | (mi))
13 #endif /* __KERNEL__ */
14 #endif /* _UAPI_LINUX_KDEV_T_H */