MFC r259099: Fix a small error in calculating length of DELAY().
This commit is contained in:
parent
abdf44b4bc
commit
01928d6e58
@ -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);
|
||||
|
||||
|
@ -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).
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user