projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
190d3b6
)
timekeeping: Fix a few minor newline issues.
author
Richard Cochran
<richardcochran@gmail.com>
Fri, 27 Apr 2012 08:12:42 +0000
(10:12 +0200)
committer
John Stultz
<john.stultz@linaro.org>
Mon, 21 May 2012 23:20:32 +0000
(16:20 -0700)
Fix a few minor newline issues.
Signed-off-by: Richard Cochran <richardcochran@gmail.com>
Signed-off-by: John Stultz <john.stultz@linaro.org>
kernel/time/timekeeping.c
patch
|
blob
|
blame
|
history
diff --git
a/kernel/time/timekeeping.c
b/kernel/time/timekeeping.c
index d66b21308f7c10639c9da150ee69e3f3dc332e47..6e46cacf5969c8290a7933a548b713a227b2e183 100644
(file)
--- a/
kernel/time/timekeeping.c
+++ b/
kernel/time/timekeeping.c
@@
-240,7
+240,6
@@
void getnstimeofday(struct timespec *ts)
timespec_add_ns(ts, nsecs);
}
-
EXPORT_SYMBOL(getnstimeofday);
ktime_t ktime_get(void)
@@
-357,8
+356,8
@@
void do_gettimeofday(struct timeval *tv)
tv->tv_sec = now.tv_sec;
tv->tv_usec = now.tv_nsec/1000;
}
-
EXPORT_SYMBOL(do_gettimeofday);
+
/**
* do_settimeofday - Sets the time of day
* @tv: pointer to the timespec variable containing the new time
@@
-392,7
+391,6
@@
int do_settimeofday(const struct timespec *tv)
return 0;
}
-
EXPORT_SYMBOL(do_settimeofday);