summaryrefslogtreecommitdiff
path: root/drivers/atm/atmdev_init.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/atm/atmdev_init.c')
-rw-r--r--drivers/atm/atmdev_init.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/atm/atmdev_init.c b/drivers/atm/atmdev_init.c
index f9e350e191ba..1d554ca7d0df 100644
--- a/drivers/atm/atmdev_init.c
+++ b/drivers/atm/atmdev_init.c
@@ -13,6 +13,9 @@ extern int zatm_detect(void);
#ifdef CONFIG_ATM_NICSTAR
extern int nicstar_detect(void);
#endif
+#ifdef CONFIG_ATM_IDT77252
+extern int idt77252_detect(void);
+#endif
#ifdef CONFIG_ATM_AMBASSADOR
extern int amb_detect(void);
#endif
@@ -47,6 +50,9 @@ int __init atmdev_init(void)
#ifdef CONFIG_ATM_NICSTAR
devs += nicstar_detect();
#endif
+#ifdef CONFIG_ATM_IDT77252
+ devs += idt77252_detect();
+#endif
#ifdef CONFIG_ATM_AMBASSADOR
devs += amb_detect();
#endif