cpufreq: governor: Simplify cpufreq_governor_limits()
[deliverable/linux.git] / scripts / ld-version.sh
CommitLineData
ccbef167
AK
1#!/usr/bin/awk -f
2# extract linker version number from stdin and turn into single number
3 {
4 gsub(".*)", "");
8083013f
MT
5 gsub(".*version ", "");
6 gsub("-.*", "");
ccbef167 7 split($1,a, ".");
d5ece1cb 8 print a[1]*100000000 + a[2]*1000000 + a[3]*10000 + a[4]*100 + a[5];
ccbef167
AK
9 exit
10 }
This page took 0.10087 seconds and 5 git commands to generate.