PERFORCE change 36782 for review

Marcel Moolenaar marcel at FreeBSD.org
Sat Aug 23 16:20:03 PDT 2003


http://perforce.freebsd.org/chv.cgi?CH=36782

Change 36782 by marcel at 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);


More information about the p4-projects mailing list