diff options
| author | Andrew Morton <akpm@osdl.org> | 2004-05-20 23:23:55 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-05-20 23:23:55 -0700 |
| commit | 0c44e490f60d84ffbb91198b718f83591d88c345 (patch) | |
| tree | 105ae538785c5b6cd748068e730d4b695b0dad3a | |
| parent | c3ca375df32d4dd958b023cc3e993bcf31c8f4e5 (diff) | |
[PATCH] drop left-over #ifndef __ia64__
From: David Mosberger <davidm@napali.hpl.hp.com>
It used to be that loops_per_jiffy was a macro on ia64, hence it couldn't be
exported. That's no longer the case though, so there is no point in
inhibiting its export (not that it makes any _sense_ to export that value on
ia64).
| -rw-r--r-- | init/main.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/init/main.c b/init/main.c index 63530aa09c05..ac28c99c157a 100644 --- a/init/main.c +++ b/init/main.c @@ -170,9 +170,7 @@ static int __init obsolete_checksetup(char *line) still work even if initially too large, it will just take slightly longer */ unsigned long loops_per_jiffy = (1<<12); -#ifndef __ia64__ EXPORT_SYMBOL(loops_per_jiffy); -#endif /* This is the number of bits of precision for the loops_per_jiffy. Each bit takes on average 1.5/HZ seconds. This (like the original) is a little |
