Re: Compile error in drivers/ide/osb4.c in 240-t10p6

From: Rasmus Andersen (rasmus@jaquet.dk)
Date: Sun Oct 29 2000 - 17:12:57 EST


> This patch, and a lot of others of a similar nature, are in my test10pre6
> compile patch at
[snip]

(Added a bit to the cc list)

Hi Arjan.

Thanks for the pointer. However my test build still barfs in the final
link phase because we (in t10p6) morphed drivers/pcmcia/cs.c::pcmcia_
request_irq into (the static) cs_request_irq. The rename part
broke the two other places in cs.c where pcmcia_request_irq was
referenced and the static part made its usage in drivers/net/pcmcia/
ray_cs.c a bit awkward.

Since I won't presume to question the decision to rename the function
the following patch propagates the rename to the rest of the kernel.
Furthermore, I presumed to remove the static part so that the ray_cs
driver was free to use it. I have added David Hinds and Corey Thomas
(the raylink driver maintainer) to the cc on this mail so they can
decide what the proper solution is.

Meanwhile, this patch makes my test kernel build:

--- linux-240-t10p6-clean/drivers/pcmcia/cs.c Sun Oct 29 09:51:13 2000
+++ linux/drivers/pcmcia/cs.c Sun Oct 29 22:52:22 2000
@@ -1836,7 +1836,7 @@
     
 ======================================================================*/
 
-static int cs_request_irq(client_handle_t handle, irq_req_t *req)
+int cs_request_irq(client_handle_t handle, irq_req_t *req)
 {
     socket_info_t *s;
     config_t *c;
@@ -2284,7 +2284,7 @@
     case RequestIO:
         return pcmcia_request_io(a1, a2); break;
     case RequestIRQ:
- return pcmcia_request_irq(a1, a2); break;
+ return cs_request_irq(a1, a2); break;
     case RequestWindow:
     {
         window_handle_t w;
@@ -2376,7 +2376,7 @@
 EXPORT_SYMBOL(pcmcia_report_error);
 EXPORT_SYMBOL(pcmcia_request_configuration);
 EXPORT_SYMBOL(pcmcia_request_io);
-EXPORT_SYMBOL(pcmcia_request_irq);
+EXPORT_SYMBOL(cs_request_irq);
 EXPORT_SYMBOL(pcmcia_request_window);
 EXPORT_SYMBOL(pcmcia_reset_card);
 EXPORT_SYMBOL(pcmcia_resume_card);
--- linux-240-t10p6-clean/drivers/net/pcmcia/ray_cs.c Sun Oct 29 09:49:52 2000
+++ linux/drivers/net/pcmcia/ray_cs.c Sun Oct 29 22:52:53 2000
@@ -560,7 +560,7 @@
     /* Now allocate an interrupt line. Note that this does not
        actually assign a handler to the interrupt.
     */
- CS_CHECK(pcmcia_request_irq, link->handle, &link->irq);
+ CS_CHECK(cs_request_irq, link->handle, &link->irq);
     dev->irq = link->irq.AssignedIRQ;
     
     /* This actually configures the PCMCIA socket -- setting up

-- 
Regards,
        Rasmus(rasmus@jaquet.dk)

"God prevent we should ever be twenty years without a revolution." -- Thomas Jefferson - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Tue Oct 31 2000 - 21:00:25 EST