Add ELSA PCMCIA support

This commit is contained in:
Karsten Keil 1997-03-23 21:44:17 +00:00
parent fe3e989b7f
commit 3b9a878d5e
2 changed files with 6 additions and 1 deletions

View File

@ -17,7 +17,8 @@ if [ "$CONFIG_ISDN_DRV_HISAX" != "n" ]; then
bool 'HiSax Support for Teles 16.0/8.0' CONFIG_HISAX_16_0
bool 'HiSax Support for Teles 16.3 or PNP or PCMCIA' CONFIG_HISAX_16_3
bool 'HiSax Support for AVM A1 (Fritz)' CONFIG_HISAX_AVM_A1
bool 'HiSax Support for Elsa cards' CONFIG_HISAX_ELSA_PCC
bool 'HiSax Support for Elsa ISA cards' CONFIG_HISAX_ELSA_PCC
bool 'HiSax Support for Elsa PCMCIA card' CONFIG_HISAX_ELSA_PCMCIA
bool 'HiSax Support for ITK ix1-micro Revision 2' CONFIG_HISAX_IX1MICROR2
bool 'HiSax Support for EURO/DSS1' CONFIG_HISAX_EURO
bool 'HiSax Support for german 1TR6' CONFIG_HISAX_1TR6

View File

@ -29,6 +29,10 @@ ifeq ($(CONFIG_HISAX_ELSA_PCC),y)
O_OBJS += elsa.o
endif
ifeq ($(CONFIG_HISAX_ELSA_PCMCIA),y)
O_OBJS += elsa.o
endif
ifeq ($(CONFIG_HISAX_IX1MICROR2),y)
O_OBJS += ix1_micro.o
endif