diff options
Diffstat (limited to 'drivers/pcmcia/pcmcia_resource.c')
-rw-r--r-- | drivers/pcmcia/pcmcia_resource.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/drivers/pcmcia/pcmcia_resource.c b/drivers/pcmcia/pcmcia_resource.c index c5a2b005091c..48e168e8165b 100644 --- a/drivers/pcmcia/pcmcia_resource.c +++ b/drivers/pcmcia/pcmcia_resource.c | |||
@@ -192,7 +192,7 @@ int pcmcia_access_configuration_register(struct pcmcia_device *p_dev, | |||
192 | return CS_BAD_ARGS; | 192 | return CS_BAD_ARGS; |
193 | break; | 193 | break; |
194 | } | 194 | } |
195 | return CS_SUCCESS; | 195 | return 0; |
196 | } /* pcmcia_access_configuration_register */ | 196 | } /* pcmcia_access_configuration_register */ |
197 | EXPORT_SYMBOL(pcmcia_access_configuration_register); | 197 | EXPORT_SYMBOL(pcmcia_access_configuration_register); |
198 | 198 | ||
@@ -226,7 +226,7 @@ int pcmcia_get_window(struct pcmcia_socket *s, window_handle_t *handle, | |||
226 | if (win->ctl.flags & MAP_USE_WAIT) | 226 | if (win->ctl.flags & MAP_USE_WAIT) |
227 | req->Attributes |= WIN_USE_WAIT; | 227 | req->Attributes |= WIN_USE_WAIT; |
228 | *handle = win; | 228 | *handle = win; |
229 | return CS_SUCCESS; | 229 | return 0; |
230 | } /* pcmcia_get_window */ | 230 | } /* pcmcia_get_window */ |
231 | EXPORT_SYMBOL(pcmcia_get_window); | 231 | EXPORT_SYMBOL(pcmcia_get_window); |
232 | 232 | ||
@@ -241,7 +241,7 @@ int pcmcia_get_mem_page(window_handle_t win, memreq_t *req) | |||
241 | return CS_BAD_HANDLE; | 241 | return CS_BAD_HANDLE; |
242 | req->Page = 0; | 242 | req->Page = 0; |
243 | req->CardOffset = win->ctl.card_start; | 243 | req->CardOffset = win->ctl.card_start; |
244 | return CS_SUCCESS; | 244 | return 0; |
245 | } /* pcmcia_get_mem_page */ | 245 | } /* pcmcia_get_mem_page */ |
246 | EXPORT_SYMBOL(pcmcia_get_mem_page); | 246 | EXPORT_SYMBOL(pcmcia_get_mem_page); |
247 | 247 | ||
@@ -257,7 +257,7 @@ int pcmcia_map_mem_page(window_handle_t win, memreq_t *req) | |||
257 | win->ctl.card_start = req->CardOffset; | 257 | win->ctl.card_start = req->CardOffset; |
258 | if (s->ops->set_mem_map(s, &win->ctl) != 0) | 258 | if (s->ops->set_mem_map(s, &win->ctl) != 0) |
259 | return CS_BAD_OFFSET; | 259 | return CS_BAD_OFFSET; |
260 | return CS_SUCCESS; | 260 | return 0; |
261 | } /* pcmcia_map_mem_page */ | 261 | } /* pcmcia_map_mem_page */ |
262 | EXPORT_SYMBOL(pcmcia_map_mem_page); | 262 | EXPORT_SYMBOL(pcmcia_map_mem_page); |
263 | 263 | ||
@@ -328,7 +328,7 @@ int pcmcia_modify_configuration(struct pcmcia_device *p_dev, | |||
328 | } | 328 | } |
329 | } | 329 | } |
330 | 330 | ||
331 | return CS_SUCCESS; | 331 | return 0; |
332 | } /* modify_configuration */ | 332 | } /* modify_configuration */ |
333 | EXPORT_SYMBOL(pcmcia_modify_configuration); | 333 | EXPORT_SYMBOL(pcmcia_modify_configuration); |
334 | 334 | ||
@@ -363,7 +363,7 @@ int pcmcia_release_configuration(struct pcmcia_device *p_dev) | |||
363 | } | 363 | } |
364 | } | 364 | } |
365 | 365 | ||
366 | return CS_SUCCESS; | 366 | return 0; |
367 | } /* pcmcia_release_configuration */ | 367 | } /* pcmcia_release_configuration */ |
368 | 368 | ||
369 | 369 | ||
@@ -397,7 +397,7 @@ static int pcmcia_release_io(struct pcmcia_device *p_dev, io_req_t *req) | |||
397 | if (req->NumPorts2) | 397 | if (req->NumPorts2) |
398 | release_io_space(s, req->BasePort2, req->NumPorts2); | 398 | release_io_space(s, req->BasePort2, req->NumPorts2); |
399 | 399 | ||
400 | return CS_SUCCESS; | 400 | return 0; |
401 | } /* pcmcia_release_io */ | 401 | } /* pcmcia_release_io */ |
402 | 402 | ||
403 | 403 | ||
@@ -429,7 +429,7 @@ static int pcmcia_release_irq(struct pcmcia_device *p_dev, irq_req_t *req) | |||
429 | pcmcia_used_irq[req->AssignedIRQ]--; | 429 | pcmcia_used_irq[req->AssignedIRQ]--; |
430 | #endif | 430 | #endif |
431 | 431 | ||
432 | return CS_SUCCESS; | 432 | return 0; |
433 | } /* pcmcia_release_irq */ | 433 | } /* pcmcia_release_irq */ |
434 | 434 | ||
435 | 435 | ||
@@ -458,7 +458,7 @@ int pcmcia_release_window(window_handle_t win) | |||
458 | 458 | ||
459 | win->magic = 0; | 459 | win->magic = 0; |
460 | 460 | ||
461 | return CS_SUCCESS; | 461 | return 0; |
462 | } /* pcmcia_release_window */ | 462 | } /* pcmcia_release_window */ |
463 | EXPORT_SYMBOL(pcmcia_release_window); | 463 | EXPORT_SYMBOL(pcmcia_release_window); |
464 | 464 | ||
@@ -573,7 +573,7 @@ int pcmcia_request_configuration(struct pcmcia_device *p_dev, | |||
573 | 573 | ||
574 | c->state |= CONFIG_LOCKED; | 574 | c->state |= CONFIG_LOCKED; |
575 | p_dev->_locked = 1; | 575 | p_dev->_locked = 1; |
576 | return CS_SUCCESS; | 576 | return 0; |
577 | } /* pcmcia_request_configuration */ | 577 | } /* pcmcia_request_configuration */ |
578 | EXPORT_SYMBOL(pcmcia_request_configuration); | 578 | EXPORT_SYMBOL(pcmcia_request_configuration); |
579 | 579 | ||
@@ -619,7 +619,7 @@ int pcmcia_request_io(struct pcmcia_device *p_dev, io_req_t *req) | |||
619 | c->io = *req; | 619 | c->io = *req; |
620 | c->state |= CONFIG_IO_REQ; | 620 | c->state |= CONFIG_IO_REQ; |
621 | p_dev->_io = 1; | 621 | p_dev->_io = 1; |
622 | return CS_SUCCESS; | 622 | return 0; |
623 | } /* pcmcia_request_io */ | 623 | } /* pcmcia_request_io */ |
624 | EXPORT_SYMBOL(pcmcia_request_io); | 624 | EXPORT_SYMBOL(pcmcia_request_io); |
625 | 625 | ||
@@ -740,7 +740,7 @@ int pcmcia_request_irq(struct pcmcia_device *p_dev, irq_req_t *req) | |||
740 | pcmcia_used_irq[irq]++; | 740 | pcmcia_used_irq[irq]++; |
741 | #endif | 741 | #endif |
742 | 742 | ||
743 | return CS_SUCCESS; | 743 | return 0; |
744 | } /* pcmcia_request_irq */ | 744 | } /* pcmcia_request_irq */ |
745 | EXPORT_SYMBOL(pcmcia_request_irq); | 745 | EXPORT_SYMBOL(pcmcia_request_irq); |
746 | 746 | ||
@@ -821,7 +821,7 @@ int pcmcia_request_window(struct pcmcia_device **p_dev, win_req_t *req, window_h | |||
821 | } | 821 | } |
822 | *wh = win; | 822 | *wh = win; |
823 | 823 | ||
824 | return CS_SUCCESS; | 824 | return 0; |
825 | } /* pcmcia_request_window */ | 825 | } /* pcmcia_request_window */ |
826 | EXPORT_SYMBOL(pcmcia_request_window); | 826 | EXPORT_SYMBOL(pcmcia_request_window); |
827 | 827 | ||