This source file includes following definitions.
- scsi_major
1 #ifndef _LINUX_MAJOR_H
2 #define _LINUX_MAJOR_H
3
4
5
6
7
8
9
10 #define MAX_CHRDEV 32
11 #define MAX_BLKDEV 32
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47 #define UNNAMED_MAJOR 0
48 #define MEM_MAJOR 1
49 #define FLOPPY_MAJOR 2
50 #define HD_MAJOR 3
51 #define TTY_MAJOR 4
52 #define TTYAUX_MAJOR 5
53 #define LP_MAJOR 6
54
55 #define SCSI_DISK_MAJOR 8
56 #define SCSI_TAPE_MAJOR 9
57 #define MOUSE_MAJOR 10
58 #define SCSI_CDROM_MAJOR 11
59 #define QIC02_TAPE_MAJOR 12
60 #define XT_DISK_MAJOR 13
61 #define SOUND_MAJOR 14
62 #define CDU31A_CDROM_MAJOR 15
63 #define SOCKET_MAJOR 16
64 #define AF_UNIX_MAJOR 17
65 #define AF_INET_MAJOR 18
66
67 #define SCSI_GENERIC_MAJOR 21
68
69 #define MITSUMI_CDROM_MAJOR 23
70 #define CDU535_CDROM_MAJOR 24
71
72
73
74
75
76 #define SCSI_MAJOR(M) \
77 ((M) == SCSI_DISK_MAJOR \
78 || (M) == SCSI_TAPE_MAJOR \
79 || (M) == SCSI_CDROM_MAJOR \
80 || (M) == SCSI_GENERIC_MAJOR)
81
82 static inline int scsi_major(int m) {
83 return SCSI_MAJOR(m);
84 }
85
86 #endif