[PATCH] pcmcia: use bitfield instead of p_state and state
Instead of the two status values struct pcmcia_device->p_state and state, use descriptive bitfields. Most value-checking in drivers was invalid, as the core now only calls the ->remove() (a.k.a. detach) function in case the attachement _and_ configuration was successful. Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
This commit is contained in:
@ -23,7 +23,7 @@
|
||||
#define CLIENT_IO_REQ 0x0004
|
||||
#define CLIENT_UNBOUND 0x0008
|
||||
#define CLIENT_STALE 0x0010
|
||||
#define CLIENT_WIN_REQ(i) (0x20<<(i))
|
||||
#define CLIENT_WIN_REQ(i) (0x1<<(i))
|
||||
#define CLIENT_CARDBUS 0x8000
|
||||
|
||||
#define REGION_MAGIC 0xE3C9
|
||||
|
Reference in New Issue
Block a user