linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] type-oh bug in tlclk.c
@ 2006-06-23 22:13 mark gross
  0 siblings, 0 replies; only message in thread
From: mark gross @ 2006-06-23 22:13 UTC (permalink / raw)
  To: linux-kernel; +Cc: mbellon, mark.gross

Mark Bellon found a bug in my tlclk driver.  Thanks!

I botch the register mask for store_received_ref_clk3a.  

See http://download.intel.com/design/network/manuals/30412001.pdf
tables 124 and 136 for details.

Please apply.

thanks,

--mgross

Signed-off-by : Mark Gross <mark.gross@intel.com>

diff -urN -X ../linux-2.6.17.1/Documentation/dontdiff ../linux-2.6.17.1/drivers/char/tlclk.c tlclk/linux-2.6.17.1/drivers/char/tlclk.c
--- ../linux-2.6.17.1/drivers/char/tlclk.c	2006-06-20 02:31:55.000000000 -0700
+++ tlclk/linux-2.6.17.1/drivers/char/tlclk.c	2006-06-23 14:12:21.000000000 -0700
@@ -343,7 +343,7 @@
 
 	val = (unsigned char)tmp;
 	spin_lock_irqsave(&event_lock, flags);
-	SET_PORT_BITS(TLCLK_REG1, 0xef, val << 1);
+	SET_PORT_BITS(TLCLK_REG1, 0xdf, val << 1);
 	spin_unlock_irqrestore(&event_lock, flags);
 
 	return strnlen(buf, count);


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2006-06-23 22:11 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-06-23 22:13 [PATCH] type-oh bug in tlclk.c mark gross

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).