Author: davide
Date: Tue Feb 19 16:43:48 2013
New Revision: 247000
URL: http://svnweb.freebsd.org/changeset/base/247000

Log:
  Fixup r246916 in case gcc is used to build.
  
  Reported by:  attilio, simon

Modified:
  head/sys/x86/isa/clock.c

Modified: head/sys/x86/isa/clock.c
==============================================================================
--- head/sys/x86/isa/clock.c    Tue Feb 19 16:40:38 2013        (r246999)
+++ head/sys/x86/isa/clock.c    Tue Feb 19 16:43:48 2013        (r247000)
@@ -450,6 +450,8 @@ set_i8254_freq(int mode, uint32_t period
                outb(TIMER_CNTR0, new_count & 0xff);
                outb(TIMER_CNTR0, new_count >> 8);
                break;
+       default:
+               panic("set_i8254_freq: unknown operational mode");
        }
        timer0_mode = new_mode;
        timer0_last = new_count;
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to