diff options
Diffstat (limited to 'include/linux/serial_8250.h')
-rw-r--r-- | include/linux/serial_8250.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/linux/serial_8250.h b/include/linux/serial_8250.h index d8a023d804d..317a979b24d 100644 --- a/include/linux/serial_8250.h +++ b/include/linux/serial_8250.h | |||
@@ -30,6 +30,21 @@ struct plat_serial8250_port { | |||
30 | }; | 30 | }; |
31 | 31 | ||
32 | /* | 32 | /* |
33 | * Allocate 8250 platform device IDs. Nothing is implied by | ||
34 | * the numbering here, except for the legacy entry being -1. | ||
35 | */ | ||
36 | enum { | ||
37 | PLAT8250_DEV_LEGACY = -1, | ||
38 | PLAT8250_DEV_PLATFORM, | ||
39 | PLAT8250_DEV_PLATFORM1, | ||
40 | PLAT8250_DEV_FOURPORT, | ||
41 | PLAT8250_DEV_ACCENT, | ||
42 | PLAT8250_DEV_BOCA, | ||
43 | PLAT8250_DEV_HUB6, | ||
44 | PLAT8250_DEV_MCA, | ||
45 | }; | ||
46 | |||
47 | /* | ||
33 | * This should be used by drivers which want to register | 48 | * This should be used by drivers which want to register |
34 | * their own 8250 ports without registering their own | 49 | * their own 8250 ports without registering their own |
35 | * platform device. Using these will make your driver | 50 | * platform device. Using these will make your driver |