diff options
| author | Dominik Brodowski <[email protected]> | 2009-11-03 01:31:52 +0100 |
|---|---|---|
| committer | Dominik Brodowski <[email protected]> | 2009-11-28 18:02:58 +0100 |
| commit | 6838b03fc6564ea07d0cd87ea6e198d90ab1fc3e (patch) | |
| tree | bf14e1ea71482dacfdad97ac9d3f895050946406 /include | |
| parent | 82f88e36004162f49a9340ffbbaebe89016e4835 (diff) | |
pcmcia: pcmcia_request_window() doesn't need a pointer to a pointer
pcmcia_request_window() only needs a pointer to struct pcmcia_device, not
a pointer to a pointer.
CC: [email protected]
CC: [email protected]
CC: [email protected]
CC: Jiri Kosina <[email protected]>
Acked-by: Karsten Keil <[email protected]> (for ISDN)
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 cbf5f05745f2..d6c55fdf8d01 100644 --- a/include/pcmcia/ds.h +++ b/include/pcmcia/ds.h @@ -199,7 +199,7 @@ int pcmcia_request_irq(struct pcmcia_device *p_dev, irq_req_t *req); int pcmcia_request_configuration(struct pcmcia_device *p_dev, config_req_t *req); -int pcmcia_request_window(struct pcmcia_device **p_dev, win_req_t *req, +int pcmcia_request_window(struct pcmcia_device *p_dev, win_req_t *req, window_handle_t *wh); int pcmcia_release_window(struct pcmcia_device *p_dev, window_handle_t win); int pcmcia_map_mem_page(struct pcmcia_device *p_dev, window_handle_t win, |