Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 23 Aug 2003 16:20:02 -0700 (PDT)
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 36782 for review
Message-ID:  <200308232320.h7NNK2VA068985@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=36782

Change 36782 by marcel@marcel_nfs on 2003/08/23 16:19:32

	We need to invert the polarity of carrier detect. It's active
	low. This solves the DCD issues. Next DTR...

Affected files ...

.. //depot/projects/uart/dev/uart/uart_dev_sab82532.c#12 edit

Differences ...

==== //depot/projects/uart/dev/uart/uart_dev_sab82532.c#12 (text+ko) ====

@@ -214,7 +214,7 @@
 	uart_barrier(bas);
 	uart_setreg(bas, SAB_CCR3, 0);
 	uart_barrier(bas);
-	uart_setreg(bas, SAB_CCR4, SAB_CCR4_MCK4|SAB_CCR4_EBRG);
+	uart_setreg(bas, SAB_CCR4, SAB_CCR4_MCK4|SAB_CCR4_EBRG|SAB_CCR4_ICD);
 	uart_barrier(bas);
 	uart_setreg(bas, SAB_MODE, SAB_MODE_RTS|SAB_MODE_FCTS|SAB_MODE_RAC);
 	uart_barrier(bas);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200308232320.h7NNK2VA068985>