https://github.com/torvalds/linux
Revision b074cf80a7d40fefe1f4063c9841232171e8daea authored by Wolfram Sang on 05 November 2014, 22:44:11 UTC, committed by Wolfram Sang on 19 December 2014, 18:32:47 UTC
The new driver is around for more than 2 years now, so the old one can
go. Getting rid of it helps the removal of the legacy .attach_adapter
callback of the I2C subsystem.

Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
1 parent f16ea4f
Raw File
Tip revision: b074cf80a7d40fefe1f4063c9841232171e8daea authored by Wolfram Sang on 05 November 2014, 22:44:11 UTC
macintosh: therm_pm72: delete deprecated driver
Tip revision: b074cf8
ld-version.sh
#!/usr/bin/awk -f
# extract linker version number from stdin and turn into single number
	{
	gsub(".*)", "");
	split($1,a, ".");
	print a[1]*10000000 + a[2]*100000 + a[3]*10000 + a[4]*100 + a[5];
	exit
	}
back to top