Author: gonzo
Date: Fri Jan 25 20:02:55 2019
New Revision: 343448
URL: https://svnweb.freebsd.org/changeset/base/343448

Log:
  [mips] Fix counter mask in jz4780 timer driver
  
  Fix dublicate value in what is apparent copypaste mistake. The last value
  in mask is supposed to be for counter 7, not counter 3.
  
  PR:           229790
  Submitted by: David Binderman <dcb...@hotmail.com>
  MFC after:    1 week

Modified:
  head/sys/mips/ingenic/jz4780_timer.c

Modified: head/sys/mips/ingenic/jz4780_timer.c
==============================================================================
--- head/sys/mips/ingenic/jz4780_timer.c        Fri Jan 25 20:00:59 2019        
(r343447)
+++ head/sys/mips/ingenic/jz4780_timer.c        Fri Jan 25 20:02:55 2019        
(r343448)
@@ -185,7 +185,7 @@ jz4780_timer_attach(device_t dev)
        CSR_WRITE_4(sc, JZ_TC_TECR, TESR_OST);
        /* Stop all other channels as well */
        CSR_WRITE_4(sc, JZ_TC_TECR, TESR_TCST0 | TESR_TCST1 | TESR_TCST2 |
-           TESR_TCST3 | TESR_TCST4 | TESR_TCST5 | TESR_TCST6 | TESR_TCST3);
+           TESR_TCST3 | TESR_TCST4 | TESR_TCST5 | TESR_TCST6 | TESR_TCST7);
        /* Clear detect mask flags */
        CSR_WRITE_4(sc, JZ_TC_TFCR, 0xFFFFFFFF);
        /* Mask all interrupts */
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to