2.0.0 support:
	linux/file.h appeared since 2.0.14
	linux/sched.h: files->open_fds.fds_bits

------------------------------------------------------------------------

#define ISA_BASE    0xA0000
#define ISA_MAX    0x100000  /* for general memory access */

/* this line appears in silly_init */
io_base = ioremap(ISA_BASE, ISA_MAX - ISA_BASE);

------------------------------------------------------------------------

use
 module_init(xx_init);
 module_exit(xx_exit);
+MODULE_LICENSE("GPL");
in all of my drivers.

------------------------------------------------------------------------

list.h soon: reverse traversal list_for_each_r and list_for_each_safe_r

------------------------------------------------------------------------

sched.h:
wake_up_interruptible 1
wake_up_interruptible_all
wake_up_interruptible_nr

