diff options
Diffstat (limited to 'drivers/atm/atmdev_init.c')
-rw-r--r-- | drivers/atm/atmdev_init.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/atm/atmdev_init.c b/drivers/atm/atmdev_init.c index 20fcaee4a..357cbdbe0 100644 --- a/drivers/atm/atmdev_init.c +++ b/drivers/atm/atmdev_init.c @@ -28,6 +28,9 @@ extern int hrz_detect(void); #ifdef CONFIG_ATM_IA extern int ia_detect(void); #endif +#ifdef CONFIG_ATM_FORE200E +extern int fore200e_detect(void); +#endif int __init atmdev_init(void) @@ -56,5 +59,8 @@ int __init atmdev_init(void) #ifdef CONFIG_ATM_IA devs += ia_detect(); #endif +#ifdef CONFIG_ATM_FORE200E + devs += fore200e_detect(); +#endif return devs; } |