* [PATCH] fixed type in drivers/char/istallion.c (untested)
@ 2003-02-04 15:42 Jörn Engel
0 siblings, 0 replies; only message in thread
From: Jörn Engel @ 2003-02-04 15:42 UTC (permalink / raw)
To: support; +Cc: linux-kernel
Hi!
The condition "(portp->brdnr < 0) && (portp->brdnr >= stli_nrbrds)" is
very hard to fulfill. I guess, this is a simple typo.
Jörn
--
Anything that can go wrong, will.
-- Finagle's Law
--- linux-2.4.21-pre3-ac4/drivers/char/istallion.c Sat Aug 3 02:39:43 2002
+++ scratch/drivers/char/istallion.c Tue Feb 4 16:09:19 2003
@@ -1501,27 +1501,27 @@
static int stli_setport(stliport_t *portp)
{
stlibrd_t *brdp;
asyport_t aport;
#if DEBUG
printk("stli_setport(portp=%x)\n", (int) portp);
#endif
if (portp == (stliport_t *) NULL)
return(-ENODEV);
if (portp->tty == (struct tty_struct *) NULL)
return(-ENODEV);
- if ((portp->brdnr < 0) && (portp->brdnr >= stli_nrbrds))
+ if ((portp->brdnr < 0) || (portp->brdnr >= stli_nrbrds))
return(-ENODEV);
brdp = stli_brds[portp->brdnr];
if (brdp == (stlibrd_t *) NULL)
return(-ENODEV);
stli_mkasyport(portp, &aport, portp->tty->termios);
return(stli_cmdwait(brdp, portp, A_SETPORT, &aport, sizeof(asyport_t), 0));
}
/*****************************************************************************/
/*
* Wait for a specified delay period, this is not a busy-loop. It will
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2003-02-04 15:33 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-02-04 15:42 [PATCH] fixed type in drivers/char/istallion.c (untested) Jörn Engel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®