From: Dagfinn Ilmari Mannsåker Date: Fri, 9 Nov 2012 03:03:50 +0000 (+1100) Subject: timeconst.pl: remove deprecated defined(@array) X-Git-Tag: next-20121109~9^2~277 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=370e9999d193dc41df4db92662d4d21fdfb99ba4;p=karo-tx-linux.git timeconst.pl: remove deprecated defined(@array) The use of defined() on arrays and hashes has been deprecated since perl 5.6, but until 5.17.6 it only warned on lexicals, not package globals. Signed-off-by: Dagfinn Ilmari Mannsåker Acked-by: "H. Peter Anvin" Cc: Thomas Gleixner Signed-off-by: Andrew Morton --- diff --git a/kernel/timeconst.pl b/kernel/timeconst.pl index eb51d76e058a..04612394c53e 100644 --- a/kernel/timeconst.pl +++ b/kernel/timeconst.pl @@ -370,7 +370,7 @@ if ($hz eq '--can') { } @val = @{$canned_values{$hz}}; - if (!defined(@val)) { + if (!@val) { @val = compute_values($hz); } output($hz, @val);