1 /* drivers/atm/atmdev_init.c - ATM device driver initialization */
3 /* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
6 #include <linux/config.h>
7 #include <linux/init.h>
10 #ifdef CONFIG_ATM_ZATM
11 extern int zatm_detect(void);
13 #ifdef CONFIG_ATM_AMBASSADOR
14 extern int amb_detect(void);
16 #ifdef CONFIG_ATM_HORIZON
17 extern int hrz_detect(void);
19 #ifdef CONFIG_ATM_FORE200E
20 extern int fore200e_detect(void);
22 #ifdef CONFIG_ATM_LANAI
23 extern int lanai_detect(void);
28 * For historical reasons, atmdev_init returns the number of devices found.
29 * Note that some detections may not go via atmdev_init (e.g. eni.c), so this
30 * number is meaningless.
33 int __init
atmdev_init(void)
38 #ifdef CONFIG_ATM_ZATM
39 devs
+= zatm_detect();
41 #ifdef CONFIG_ATM_AMBASSADOR
44 #ifdef CONFIG_ATM_HORIZON
47 #ifdef CONFIG_ATM_FORE200E
48 devs
+= fore200e_detect();
50 #ifdef CONFIG_ATM_LANAI
51 devs
+= lanai_detect();