artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f6f8cf5
)
rename variable to better indicate it's meaning
author
jasper
<jasper@openbsd.org>
Sat, 12 Jul 2014 19:47:38 +0000
(19:47 +0000)
committer
jasper
<jasper@openbsd.org>
Sat, 12 Jul 2014 19:47:38 +0000
(19:47 +0000)
sys/arch/octeon/stand/boot/clock.c
patch
|
blob
|
history
diff --git
a/sys/arch/octeon/stand/boot/clock.c
b/sys/arch/octeon/stand/boot/clock.c
index
46345fe
..
acccf60
100644
(file)
--- a/
sys/arch/octeon/stand/boot/clock.c
+++ b/
sys/arch/octeon/stand/boot/clock.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: clock.c,v 1.
2 2013/06/05 02:45:37
jasper Exp $ */
+/* $OpenBSD: clock.c,v 1.
3 2014/07/12 19:47:38
jasper Exp $ */
/*
* Copyright (c) 2013 Jasper Lievisse Adriaanse <jasper@openbsd.org>
@@
-24,9
+24,9
@@
#define DELAY_MULTIPLIER 10000
void
-delay(int
n
s)
+delay(int
m
s)
{
- volatile int i =
n
s * DELAY_MULTIPLIER;
+ volatile int i =
m
s * DELAY_MULTIPLIER;
for (; --i;)
;
}