https://github.com/torvalds/linux
Revision 74d074eecbb4778e5f5ee7d59399da971682c532 authored by Alex Deucher on 17 June 2011, 06:11:30 UTC, committed by Dave Airlie on 19 June 2011, 23:53:02 UTC
This is used during phy init to set up the phy for DP.  This may
fix DP problems on DCE3.2 cards.

Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
1 parent 8323fa6
Raw File
Tip revision: 74d074eecbb4778e5f5ee7d59399da971682c532 authored by Alex Deucher on 17 June 2011, 06:11:30 UTC
drm/radeon/kms: add missing param for dce3.2 DP transmitter setup
Tip revision: 74d074e
headers.sh
#!/bin/sh
# Run headers_$1 command for all suitable architectures

# Stop on error
set -e

do_command()
{
	if [ -f ${srctree}/arch/$2/include/asm/Kbuild ]; then
		make ARCH=$2 KBUILD_HEADERS=$1 headers_$1
	else
		printf "Ignoring arch: %s\n" ${arch}
	fi
}

archs=${HDR_ARCH_LIST:-$(ls ${srctree}/arch)}

for arch in ${archs}; do
	case ${arch} in
	um)        # no userspace export
		;;
	cris)      # headers export are known broken
		;;
	*)
		if [ -d ${srctree}/arch/${arch} ]; then
			do_command $1 ${arch}
		fi
		;;
	esac
done


back to top