.. | .. |
---|
7 | 7 | #include <linux/device.h> |
---|
8 | 8 | |
---|
9 | 9 | /* |
---|
10 | | - * These allocations are managed by device@lanana.org. If you use an |
---|
11 | | - * entry that is not in assigned your entry may well be moved and |
---|
12 | | - * reassigned, or set dynamic if a fixed value is not justified. |
---|
| 10 | + * These allocations are managed by device@lanana.org. If you need |
---|
| 11 | + * an entry that is not assigned here, it can be moved and |
---|
| 12 | + * reassigned or dynamically set if a fixed value is not justified. |
---|
13 | 13 | */ |
---|
14 | 14 | |
---|
15 | 15 | #define PSMOUSE_MINOR 1 |
---|
.. | .. |
---|
25 | 25 | #define TEMP_MINOR 131 /* Temperature Sensor */ |
---|
26 | 26 | #define APM_MINOR_DEV 134 |
---|
27 | 27 | #define RTC_MINOR 135 |
---|
28 | | -#define EFI_RTC_MINOR 136 /* EFI Time services */ |
---|
| 28 | +/*#define EFI_RTC_MINOR 136 was EFI Time services */ |
---|
29 | 29 | #define VHCI_MINOR 137 |
---|
30 | 30 | #define SUN_OPENPROM_MINOR 139 |
---|
31 | 31 | #define DMAPI_MINOR 140 /* unused */ |
---|
32 | 32 | #define NVRAM_MINOR 144 |
---|
| 33 | +#define SBUS_FLASH_MINOR 152 |
---|
33 | 34 | #define SGI_MMTIMER 153 |
---|
| 35 | +#define PMU_MINOR 154 |
---|
34 | 36 | #define STORE_QUEUE_MINOR 155 /* unused */ |
---|
| 37 | +#define LCD_MINOR 156 |
---|
| 38 | +#define AC_MINOR 157 |
---|
| 39 | +#define BUTTON_MINOR 158 /* Major 10, Minor 158, /dev/nwbutton */ |
---|
| 40 | +#define NWFLASH_MINOR 160 /* MAJOR is 10 - miscdevice */ |
---|
| 41 | +#define ENVCTRL_MINOR 162 |
---|
35 | 42 | #define I2O_MINOR 166 |
---|
| 43 | +#define UCTRL_MINOR 174 |
---|
| 44 | +#define AGPGART_MINOR 175 |
---|
| 45 | +#define TOSH_MINOR_DEV 181 |
---|
36 | 46 | #define HWRNG_MINOR 183 |
---|
37 | 47 | #define MICROCODE_MINOR 184 |
---|
| 48 | +#define KEYPAD_MINOR 185 |
---|
38 | 49 | #define IRNET_MINOR 187 |
---|
39 | 50 | #define D7S_MINOR 193 |
---|
40 | 51 | #define VFIO_MINOR 196 |
---|
| 52 | +#define PXA3XX_GCU_MINOR 197 |
---|
41 | 53 | #define TUN_MINOR 200 |
---|
42 | 54 | #define CUSE_MINOR 203 |
---|
43 | 55 | #define MWAVE_MINOR 219 /* ACP/Mwave Modem */ |
---|
.. | .. |
---|
48 | 60 | #define MISC_MCELOG_MINOR 227 |
---|
49 | 61 | #define HPET_MINOR 228 |
---|
50 | 62 | #define FUSE_MINOR 229 |
---|
| 63 | +#define SNAPSHOT_MINOR 231 |
---|
51 | 64 | #define KVM_MINOR 232 |
---|
52 | 65 | #define BTRFS_MINOR 234 |
---|
53 | 66 | #define AUTOFS_MINOR 235 |
---|
.. | .. |
---|
80 | 93 | |
---|
81 | 94 | /* |
---|
82 | 95 | * Helper macro for drivers that don't do anything special in the initcall. |
---|
83 | | - * This helps in eleminating of boilerplate code. |
---|
| 96 | + * This helps to eliminate boilerplate code. |
---|
84 | 97 | */ |
---|
85 | 98 | #define builtin_misc_device(__misc_device) \ |
---|
86 | 99 | builtin_driver(__misc_device, misc_register) |
---|
87 | 100 | |
---|
88 | 101 | /* |
---|
89 | 102 | * Helper macro for drivers that don't do anything special in module init / exit |
---|
90 | | - * call. This helps in eleminating of boilerplate code. |
---|
| 103 | + * call. This helps to eliminate boilerplate code. |
---|
91 | 104 | */ |
---|
92 | 105 | #define module_misc_device(__misc_device) \ |
---|
93 | 106 | module_driver(__misc_device, misc_register, misc_deregister) |
---|