Messages in this thread Patch in this message |  | | Subject | Re: [BUG] Linux-2.4.12 does not build. | From | Robert Love <> | Date | 11 Oct 2001 18:09:01 -0400 |
| |
On Thu, 2001-10-11 at 17:58, Enver Haase wrote: > ieee1284_ops.c:365: (Each undeclared identifier is reported only once > ieee1284_ops.c:365: for each function it appears in.) > ieee1284_ops.c: In function `ecp_reverse_to_forward': > ieee1284_ops.c:397: `IEEE1284_PH_DIR_UNKNOWN' undeclared (first use in
This is known. Apply the attached patch.
--- ieee1284_ops.c~ Thu Oct 11 11:10:37 2001 +++ ieee1284_ops.c Thu Oct 11 11:22:31 2001 @@ -362,7 +362,7 @@ } else { DPRINTK (KERN_DEBUG "%s: ECP direction: failed to reverse\n", port->name); - port->ieee1284.phase = IEEE1284_PH_DIR_UNKNOWN; + port->ieee1284.phase = IEEE1284_PH_ECP_DIR_UNKNOWN; }
return retval; @@ -394,7 +394,7 @@ DPRINTK (KERN_DEBUG "%s: ECP direction: failed to switch forward\n", port->name); - port->ieee1284.phase = IEEE1284_PH_DIR_UNKNOWN; + port->ieee1284.phase = IEEE1284_PH_ECP_DIR_UNKNOWN; }
Robert Love - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |