diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-19 22:12:03 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-19 22:12:03 -0500 |
commit | 121027a7a64a12e9e5c0289f12473ff11678a812 (patch) | |
tree | 741dd57ee06d9607d9126a7ae9014cd087e54d32 /kernel | |
parent | 5abcd76f5d896de014bd8d1486107c483659d40d (diff) | |
parent | 63a3f603413ffe82ad775f2d62a5afff87fd94a0 (diff) |
Merge branch 'x86-build-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull two x86 kernel build changes from Ingo Molnar:
"The first change modifies how 'make oldconfig' works on cross-bitness
situations on x86. It was felt the new behavior of preserving the
bitness of the .config is more logical. This is a leftover of the
merge.
The second change eliminates a Perl warning. (There's another, more
complete fix resulting of this warning fix, which second fix in flight
to you via the kbuild tree, which will remove the timeconst.pl script
altogether.)"
* 'x86-build-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
timeconst.pl: Eliminate Perl warning
x86: Default to ARCH=x86 to avoid overriding CONFIG_64BIT
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/timeconst.pl | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/kernel/timeconst.pl b/kernel/timeconst.pl index eb51d76e058a..3f42652a6a37 100644 --- a/kernel/timeconst.pl +++ b/kernel/timeconst.pl | |||
@@ -369,10 +369,8 @@ if ($hz eq '--can') { | |||
369 | die "Usage: $0 HZ\n"; | 369 | die "Usage: $0 HZ\n"; |
370 | } | 370 | } |
371 | 371 | ||
372 | @val = @{$canned_values{$hz}}; | 372 | $cv = $canned_values{$hz}; |
373 | if (!defined(@val)) { | 373 | @val = defined($cv) ? @$cv : compute_values($hz); |
374 | @val = compute_values($hz); | ||
375 | } | ||
376 | output($hz, @val); | 374 | output($hz, @val); |
377 | } | 375 | } |
378 | exit 0; | 376 | exit 0; |