Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 171507
b: refs/heads/master
c: 3586e0a
h: refs/heads/master
i:
  171505: 5e79908
  171503: 865d327
v: v3
  • Loading branch information
David S. Miller committed Nov 12, 2009
1 parent 106488a commit 726d2fc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a3bc1f11e9b867a4f49505ecac486a33af248b2e
refs/heads/master: 3586e0a9a4a5f19110627d6ba81ada32a358467d
6 changes: 3 additions & 3 deletions trunk/kernel/time/clocksource.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ void timecounter_init(struct timecounter *tc,
tc->cycle_last = cc->read(cc);
tc->nsec = start_tstamp;
}
EXPORT_SYMBOL(timecounter_init);
EXPORT_SYMBOL_GPL(timecounter_init);

/**
* timecounter_read_delta - get nanoseconds since last call of this function
Expand Down Expand Up @@ -83,7 +83,7 @@ u64 timecounter_read(struct timecounter *tc)

return nsec;
}
EXPORT_SYMBOL(timecounter_read);
EXPORT_SYMBOL_GPL(timecounter_read);

u64 timecounter_cyc2time(struct timecounter *tc,
cycle_t cycle_tstamp)
Expand All @@ -105,7 +105,7 @@ u64 timecounter_cyc2time(struct timecounter *tc,

return nsec;
}
EXPORT_SYMBOL(timecounter_cyc2time);
EXPORT_SYMBOL_GPL(timecounter_cyc2time);

/*[Clocksource internal variables]---------
* curr_clocksource:
Expand Down
6 changes: 3 additions & 3 deletions trunk/kernel/time/timecompare.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ ktime_t timecompare_transform(struct timecompare *sync,

return ns_to_ktime(nsec);
}
EXPORT_SYMBOL(timecompare_transform);
EXPORT_SYMBOL_GPL(timecompare_transform);

int timecompare_offset(struct timecompare *sync,
s64 *offset,
Expand Down Expand Up @@ -131,7 +131,7 @@ int timecompare_offset(struct timecompare *sync,

return used;
}
EXPORT_SYMBOL(timecompare_offset);
EXPORT_SYMBOL_GPL(timecompare_offset);

void __timecompare_update(struct timecompare *sync,
u64 source_tstamp)
Expand Down Expand Up @@ -188,4 +188,4 @@ void __timecompare_update(struct timecompare *sync,
}
}
}
EXPORT_SYMBOL(__timecompare_update);
EXPORT_SYMBOL_GPL(__timecompare_update);

0 comments on commit 726d2fc

Please sign in to comment.