* [PATCH] [2.4] Rocketport driver compile fix
@ 2003-09-11 20:31 Oleg Drokin
0 siblings, 0 replies; only message in thread
From: Oleg Drokin @ 2003-09-11 20:31 UTC (permalink / raw)
To: marcelo, linux-kernel
Hello!
Rocketport driver does not compile in latest 2.4 bk, it seems to assume
that tty->count is of atomic type which is no longer true.
Seems that this patch is needed now.
===== drivers/char/rocket.c 1.9 vs edited =====
--- 1.9/drivers/char/rocket.c Wed Aug 13 17:22:04 2003
+++ edited/drivers/char/rocket.c Thu Sep 11 15:22:06 2003
@@ -1052,7 +1052,7 @@
restore_flags(flags);
return;
}
- if ((atomic_read(&tty->count) == 1) && (info->count != 1)) {
+ if ((tty->count == 1) && (info->count != 1)) {
/*
* Uh, oh. tty->count is 1, which means that the tty
* structure will be freed. Info->count should always
Bye,
Oleg
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2003-09-11 20:36 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-09-11 20:31 [PATCH] [2.4] Rocketport driver compile fix Oleg Drokin
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.