* PROBLEM: IEEE1284 parport code won't build in 2.4.12
@ 2001-10-12 12:56 Steve Martin
2001-10-12 13:11 ` Jesper Juhl
0 siblings, 1 reply; 2+ messages in thread
From: Steve Martin @ 2001-10-12 12:56 UTC (permalink / raw)
To: linux-kernel
This has already been passed on to Tim Waugh, but here's
a heads-up:
drivers/parport/ieee1284_ops.c -- invokes an undefined
enum entry from parport.h -- as a result the code
won't build.
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: PROBLEM: IEEE1284 parport code won't build in 2.4.12
2001-10-12 12:56 PROBLEM: IEEE1284 parport code won't build in 2.4.12 Steve Martin
@ 2001-10-12 13:11 ` Jesper Juhl
0 siblings, 0 replies; 2+ messages in thread
From: Jesper Juhl @ 2001-10-12 13:11 UTC (permalink / raw)
To: Steve Martin; +Cc: linux-kernel
Steve Martin wrote:
> This has already been passed on to Tim Waugh, but here's
> a heads-up:
>
> drivers/parport/ieee1284_ops.c -- invokes an undefined
> enum entry from parport.h -- as a result the code
> won't build.
I believe that is the problem that Linus posted this fix for (try it out):
--- linux/drivers/parport/ieee1284_ops.c.origThu Oct 11 09:40:39 2001
+++ linux/drivers/parport/ieee1284_ops.cThu Oct 11 09:40:42 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;
}
Regards,
Jesper Juhl
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2001-10-12 13:18 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-10-12 12:56 PROBLEM: IEEE1284 parport code won't build in 2.4.12 Steve Martin
2001-10-12 13:11 ` Jesper Juhl
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox