Define bits for memory mapping house keeping by bridges.

This commit is contained in:
Warner Losh 2009-01-05 20:58:41 +00:00
parent d0bc502637
commit 609729b7a6

View File

@ -69,6 +69,10 @@ struct pccard_mem_handle {
int kind;
};
/* Bits for kind */
#define PCCARD_MEM_16BIT 1 /* 1 -> 16bit 0 -> 8bit */
#define PCCARD_MEM_ATTR 2 /* 1 -> attribute mem 0 -> common */
#define PCCARD_WIDTH_AUTO 0
#define PCCARD_WIDTH_IO8 1
#define PCCARD_WIDTH_IO16 2