diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2010-07-28 04:59:06 -0400 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2010-09-29 11:20:21 -0400 |
commit | cdb138080b78146d1cdadba9f5dadbeb97445b91 (patch) | |
tree | fae26f709ed0f19648db79059234faf9fa028051 /Documentation/pcmcia | |
parent | 899611ee7d373e5eeda08e9a8632684e1ebbbf00 (diff) |
pcmcia: do not use win_req_t when calling pcmcia_request_window()
Instead of win_req_t, drivers are now requested to fill out
struct pcmcia_device *p_dev->resource[2,3,4,5] for up to four iomem
ranges. After a call to pcmcia_request_window(), the windows found there
are reserved and may be used until pcmcia_release_window() is called.
CC: netdev@vger.kernel.org
CC: linux-wireless@vger.kernel.org
CC: linux-mtd@lists.infradead.org
CC: Jiri Kosina <jkosina@suse.cz>
CC: linux-scsi@vger.kernel.org
Tested-by: Wolfram Sang <w.sang@pengutronix.de>
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'Documentation/pcmcia')
-rw-r--r-- | Documentation/pcmcia/driver-changes.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Documentation/pcmcia/driver-changes.txt b/Documentation/pcmcia/driver-changes.txt index 26c0f9c00545..86e0f491f85e 100644 --- a/Documentation/pcmcia/driver-changes.txt +++ b/Documentation/pcmcia/driver-changes.txt | |||
@@ -1,4 +1,11 @@ | |||
1 | This file details changes in 2.6 which affect PCMCIA card driver authors: | 1 | This file details changes in 2.6 which affect PCMCIA card driver authors: |
2 | * pcmcia_request_window changes (as of 2.6.36) | ||
3 | Instead of win_req_t, drivers are now requested to fill out | ||
4 | struct pcmcia_device *p_dev->resource[2,3,4,5] for up to four ioport | ||
5 | ranges. After a call to pcmcia_request_window(), the regions found there | ||
6 | are reserved and may be used immediately -- until pcmcia_release_window() | ||
7 | is called. | ||
8 | |||
2 | * pcmcia_request_io changes (as of 2.6.36) | 9 | * pcmcia_request_io changes (as of 2.6.36) |
3 | Instead of io_req_t, drivers are now requested to fill out | 10 | Instead of io_req_t, drivers are now requested to fill out |
4 | struct pcmcia_device *p_dev->resource[0,1] for up to two ioport | 11 | struct pcmcia_device *p_dev->resource[0,1] for up to two ioport |