You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pcmcia-opts.h 538B

1234567891011121314151617181920212223
  1. // pcmcia-opts.h
  2. // special options file for development time. Later this could end in Config(?)
  3. #ifndef __pcmciaopts
  4. #define __pcmciaopts
  5. #define _yes_ 1
  6. #define _no_ 0
  7. #define SUPPORT_I82365 (_yes_)
  8. // #define SUPPORT_YENTA (_no_)
  9. // #define SUPPORT_SOME_DRIVER (_no_)
  10. #define PCMCIA_SHUTDOWN (_yes_)
  11. #define MAP_ATTRMEM_TO 0xd0000
  12. #define MAP_ATTRMEM_LEN 0x02000
  13. #define PDEBUG 3
  14. // The higher the more output you get, 0..3
  15. // Not fully implemented though, but for the future...
  16. #undef _yes_
  17. #undef _no_
  18. #endif