GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / toolchains / hndtools-arm-linux-2.6.36-uclibc-4.5.3 / arm-brcm-linux-uclibcgnueabi / sysroot / usr / include / linux / kdev_t.h
blobaf5551d001ce1b8e2e259d4192e09b3abd8e71cb
1 #ifndef _LINUX_KDEV_T_H
2 #define _LINUX_KDEV_T_H
4 /*
5 Some programs want their definitions of MAJOR and MINOR and MKDEV
6 from the kernel sources. These must be the externally visible ones.
7 */
8 #define MAJOR(dev) ((dev)>>8)
9 #define MINOR(dev) ((dev) & 0xff)
10 #define MKDEV(ma,mi) ((ma)<<8 | (mi))
11 #endif