diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2010-07-29 15:54:54 +0200 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2010-09-29 17:20:21 +0200 |
commit | 1a4a046030ade0f57b8f3b476d61c7c35d894b66 (patch) | |
tree | 07496ee2340444c87740745b140957347b4da1c3 /include/pcmcia | |
parent | e8405f0f617856de0ceb7d04e65b663051451544 (diff) | |
download | op-kernel-dev-1a4a046030ade0f57b8f3b476d61c7c35d894b66.zip op-kernel-dev-1a4a046030ade0f57b8f3b476d61c7c35d894b66.tar.gz |
pcmcia: remove Pin, Copy configuration register access
The "Pin" and "Copy" configuration registers (CISREG_SCR, CISREG_PPR)
do not seem to be utilized anywhere. If a device would request a
write to these registers, "0" would be written. Continue to do so, but
warn of unexpected behavior -- and remove the "Pin" and "Copy" entries
from config_req_t.
Tested-by: Wolfram Sang <w.sang@pengutronix.de>
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'include/pcmcia')
-rw-r--r-- | include/pcmcia/cs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/pcmcia/cs.h b/include/pcmcia/cs.h index ccb8e6e..e656abe 100644 --- a/include/pcmcia/cs.h +++ b/include/pcmcia/cs.h @@ -24,7 +24,7 @@ typedef struct config_req_t { u_int Attributes; u_int IntType; u_int ConfigBase; - u_char Status, Pin, Copy, ExtStatus; + u_char Status, ExtStatus; u_char ConfigIndex; u_int Present; } config_req_t; |