https://github.com/torvalds/linux
Revision 88b96088e94ec66f6c9015eee28cb9d053be69c0 authored by Rafael J. Wysocki on 05 July 2018, 10:47:16 UTC, committed by Rafael J. Wysocki on 05 July 2018, 10:47:16 UTC
Merge a PCI power management regression fix.

* pm-pci:
  PCI / ACPI / PM: Resume bridges w/o drivers on suspend-to-RAM
2 parent s 895b661 + 26112dd
Raw File
Tip revision: 88b96088e94ec66f6c9015eee28cb9d053be69c0 authored by Rafael J. Wysocki on 05 July 2018, 10:47:16 UTC
Merge branch 'pm-pci'
Tip revision: 88b9608
cc-can-link.sh
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0

cat << "END" | $@ -x c - -o /dev/null >/dev/null 2>&1 && echo "y"
#include <stdio.h>
int main(void)
{
	printf("");
	return 0;
}
END
back to top