MFC r259099: Fix a small error in calculating length of DELAY().

This commit is contained in:
ian 2014-05-12 22:15:57 +00:00
parent abdf44b4bc
commit 01928d6e58
2 changed files with 3 additions and 1 deletions

View File

@ -359,7 +359,7 @@ DELAY(int usec)
}
/* Get the number of times to count */
counts = usec * ((am335x_dmtimer_tc.tc_frequency / 1000000) + 1);
counts = usec * (am335x_dmtimer_tc.tc_frequency / 1000000) + 1;
first = am335x_dmtimer_tc_read_4(DMTIMER_TCRR);

View File

@ -2,6 +2,8 @@
.include <bsd.own.mk>
SUBDIR_PARALLEL=
# Modules that include binary-only blobs of microcode should be selectable by
# MK_SOURCELESS_UCODE option (see below).