Revision d128dfb514f55af040c38a6b3b131d72b6f115d0 authored by Thomas Gleixner on 10 February 2017, 13:44:01 UTC, committed by Thomas Gleixner on 10 February 2017, 13:44:01 UTC
Pull irqchip fixes for v4.10 from Jason Cooper

- keystone: Fix scheduling while atomic for realtime
- mxs: Enable SKIP_SET_WAKE and MASK_ON_SUSPEND
2 parent s 3d88460 + 88e20c7
Raw File
ld-version.sh
#!/usr/bin/awk -f
# extract linker version number from stdin and turn into single number
	{
	gsub(".*\\)", "");
	gsub(".*version ", "");
	gsub("-.*", "");
	split($1,a, ".");
	print a[1]*100000000 + a[2]*1000000 + a[3]*10000;
	exit
	}
back to top