Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-6]: src/sys/arch/hp300/dev Pull up revision 1.53 (requested by ...
details: https://anonhg.NetBSD.org/src/rev/d6bb8f3f0bfd
branches: netbsd-1-6
changeset: 528351:d6bb8f3f0bfd
user: lukem <lukem%NetBSD.org@localhost>
date: Sat Jul 06 03:21:21 2002 +0000
description:
Pull up revision 1.53 (requested by gmcgarry in ticket #436):
Invert test of EPASSTHROUGH. Problem reported by
Bernd Sieker <bsieker%freenet.de@localhost>.
diffstat:
sys/arch/hp300/dev/ite.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 809bb0e0837d -r d6bb8f3f0bfd sys/arch/hp300/dev/ite.c
--- a/sys/arch/hp300/dev/ite.c Fri Jul 05 14:00:53 2002 +0000
+++ b/sys/arch/hp300/dev/ite.c Sat Jul 06 03:21:21 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ite.c,v 1.52 2002/03/17 19:40:38 atatat Exp $ */
+/* $NetBSD: ite.c,v 1.52.6.1 2002/07/06 03:21:21 lukem Exp $ */
/*-
* Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
@@ -85,7 +85,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ite.c,v 1.52 2002/03/17 19:40:38 atatat Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ite.c,v 1.52.6.1 2002/07/06 03:21:21 lukem Exp $");
#include "hil.h"
@@ -471,7 +471,7 @@
int error;
error = (*tp->t_linesw->l_ioctl)(tp, cmd, addr, flag, p);
- if (error == EPASSTHROUGH)
+ if (error != EPASSTHROUGH)
return (error);
return ttioctl(tp, cmd, addr, flag, p);
}
Home |
Main Index |
Thread Index |
Old Index