Date: Sun, 30 Jun 2013 19:53:52 +0000 (UTC) From: Aleksandr Rybalko <ray@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r252427 - head/sys/arm/arm Message-ID: <201306301953.r5UJrq7F011119@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ray Date: Sun Jun 30 19:53:52 2013 New Revision: 252427 URL: http://svnweb.freebsd.org/changeset/base/252427 Log: Replace some spaces to tab. Modified: head/sys/arm/arm/generic_timer.c Modified: head/sys/arm/arm/generic_timer.c ============================================================================== --- head/sys/arm/arm/generic_timer.c Sun Jun 30 19:52:45 2013 (r252426) +++ head/sys/arm/arm/generic_timer.c Sun Jun 30 19:53:52 2013 (r252427) @@ -241,7 +241,7 @@ arm_tmr_intr(void *arg) sc = (struct arm_tmr_softc *)arg; ctrl = get_ctrl(); if (ctrl & GENERIC_TIMER_CTRL_INT_STAT) { - ctrl |= GENERIC_TIMER_CTRL_INT_MASK; + ctrl |= GENERIC_TIMER_CTRL_INT_MASK; set_ctrl(ctrl); } @@ -305,7 +305,7 @@ arm_tmr_attach(device_t dev) set_freq(sc->clkfreq); disable_user_access(); - arm_tmr_timecount.tc_frequency = sc->clkfreq; + arm_tmr_timecount.tc_frequency = sc->clkfreq; tc_init(&arm_tmr_timecount); sc->et.et_name = "ARM MPCore Eventtimer"; @@ -358,7 +358,7 @@ DELAY(int usec) /* * Check the timers are setup, if not just * use a for loop for the meantime - */ + */ if (arm_tmr_sc == NULL) { for (; usec > 0; usec--) for (counts = 200; counts > 0; counts--) @@ -371,7 +371,7 @@ DELAY(int usec) } /* Get the number of times to count */ - counts_per_usec = ((arm_tmr_timecount.tc_frequency / 1000000) + 1); + counts_per_usec = ((arm_tmr_timecount.tc_frequency / 1000000) + 1); /* * Clamp the timeout at a maximum value (about 32 seconds with
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201306301953.r5UJrq7F011119>