diff options
| author | Magnus Damm <[email protected]> | 2006-12-13 19:46:38 +0900 |
|---|---|---|
| committer | Dominik Brodowski <[email protected]> | 2009-11-28 18:01:26 +0100 |
| commit | f5560da549ea2e32dd41e36548c0e7dee3d4aabb (patch) | |
| tree | 604c41db48ba2e497857ceb2137099d2f0d96d3b /include | |
| parent | 78a14e273d93dfbea9673f9b10398c538096302d (diff) | |
pcmcia: Pass struct pcmcia_device to pcmcia_release_window()
No logic changes, just pass struct pcmcia_device to pcmcia_release_window().
[[email protected]: update to 2.6.31]
CC: [email protected]
CC: Jiri Kosina <[email protected]>
Signed-off-by: Magnus Damm <[email protected]>
Signed-off-by: Dominik Brodowski <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/pcmcia/ds.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/pcmcia/ds.h b/include/pcmcia/ds.h index d82392de4e92..40b098d7aa41 100644 --- a/include/pcmcia/ds.h +++ b/include/pcmcia/ds.h @@ -201,7 +201,7 @@ int pcmcia_request_configuration(struct pcmcia_device *p_dev, int pcmcia_request_window(struct pcmcia_device **p_dev, win_req_t *req, window_handle_t *wh); -int pcmcia_release_window(window_handle_t win); +int pcmcia_release_window(struct pcmcia_device *p_dev, window_handle_t win); int pcmcia_get_mem_page(window_handle_t win, memreq_t *req); int pcmcia_map_mem_page(window_handle_t win, memreq_t *req); |