Skip to content

Commit

Permalink
timekeeping: Fix a few minor newline issues.
Browse files Browse the repository at this point in the history
Fix a few minor newline issues.

Signed-off-by: Richard Cochran <[email protected]>
Signed-off-by: John Stultz <[email protected]>
  • Loading branch information
richardcochran authored and johnstultz-work committed May 21, 2012
1 parent 190d3b6 commit d239f49
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions kernel/time/timekeeping.c
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,6 @@ void getnstimeofday(struct timespec *ts)

timespec_add_ns(ts, nsecs);
}

EXPORT_SYMBOL(getnstimeofday);

ktime_t ktime_get(void)
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -392,7 +391,6 @@ int do_settimeofday(const struct timespec *tv)

return 0;
}

EXPORT_SYMBOL(do_settimeofday);


Expand Down

0 comments on commit d239f49

Please sign in to comment.