Commit c67574a3 authored by Alan Cox's avatar Alan Cox Committed by Linus Torvalds

[PATCH] typo fix for time.h

(Steven Cole)
parent 1bb902d8
......@@ -118,7 +118,7 @@ static __inline__ void
jiffies_to_timespec(unsigned long jiffies, struct timespec *value)
{
/*
* Convert jiffies to nanoseconds and seperate with
* Convert jiffies to nanoseconds and separate with
* one divide.
*/
u64 nsec = (u64)jiffies * TICK_NSEC;
......@@ -146,7 +146,7 @@ static __inline__ void
jiffies_to_timeval(unsigned long jiffies, struct timeval *value)
{
/*
* Convert jiffies to nanoseconds and seperate with
* Convert jiffies to nanoseconds and separate with
* one divide.
*/
u64 nsec = (u64)jiffies * TICK_NSEC;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment