https://github.com/torvalds/linux
Revision a656cbf07f1106db941af337ac0051347fb778a5 authored by Jean Delvare on 01 October 2009, 16:08:18 UTC, committed by Takashi Iwai on 02 October 2009, 05:38:37 UTC
I can't see any reason for struct i2c_driver keywest_driver to not be
static.

Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
1 parent ebb6f6a
Raw File
Tip revision: a656cbf07f1106db941af337ac0051347fb778a5 authored by Jean Delvare on 01 October 2009, 16:08:18 UTC
sound: Make keywest_driver static
Tip revision: a656cbf
mkuboot.sh
#!/bin/bash

#
# Build U-Boot image when `mkimage' tool is available.
#

MKIMAGE=$(type -path "${CROSS_COMPILE}mkimage")

if [ -z "${MKIMAGE}" ]; then
	MKIMAGE=$(type -path mkimage)
	if [ -z "${MKIMAGE}" ]; then
		# Doesn't exist
		echo '"mkimage" command not found - U-Boot images will not be built' >&2
		exit 0;
	fi
fi

# Call "mkimage" to create U-Boot image
${MKIMAGE} "$@"
back to top