allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / drivers / s390 / net / cu3088.h
blob1753661f702a196325968df22cffec4485743f5e
1 #ifndef _CU3088_H
2 #define _CU3088_H
4 /**
5 * Enum for classifying detected devices.
6 */
7 enum channel_types {
8 /* Device is not a channel */
9 channel_type_none,
11 /* Device is a CTC/A */
12 channel_type_parallel,
14 /* Device is a ESCON channel */
15 channel_type_escon,
17 /* Device is a FICON channel */
18 channel_type_ficon,
20 /* Device is a P390 LCS card */
21 channel_type_p390,
23 /* Device is a OSA2 card */
24 channel_type_osa2,
26 /* Device is a CLAW channel device */
27 channel_type_claw,
29 /* Device is a channel, but we don't know
30 * anything about it */
31 channel_type_unknown,
33 /* Device is an unsupported model */
34 channel_type_unsupported,
36 /* number of type entries */
37 num_channel_types
40 extern const char *cu3088_type[num_channel_types];
41 extern int register_cu3088_discipline(struct ccwgroup_driver *);
42 extern void unregister_cu3088_discipline(struct ccwgroup_driver *);
44 #endif