cregit-Linux how code gets into the kernel

Release 4.17 include/uapi/linux/kdev_t.h

/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
#ifndef _UAPI_LINUX_KDEV_T_H

#define _UAPI_LINUX_KDEV_T_H
#ifndef __KERNEL__

/*
Some programs want their definitions of MAJOR and MINOR and MKDEV
from the kernel sources. These must be the externally visible ones.
*/

#define MAJOR(dev)	((dev)>>8)

#define MINOR(dev)	((dev) & 0xff)

#define MKDEV(ma,mi)	((ma)<<8 | (mi))
#endif /* __KERNEL__ */
#endif /* _UAPI_LINUX_KDEV_T_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
David Howells3997.50%150.00%
Greg Kroah-Hartman12.50%150.00%
Total40100.00%2100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.