https://github.com/torvalds/linux
Revision 79cc8322b6d82747cb63ea464146c0bf5b5a6bc1 authored by Sasha Neftin on 09 September 2021, 17:49:04 UTC, committed by Tony Nguyen on 20 October 2021, 16:07:21 UTC
The device ID for I226_K was incorrectly assigned, update the device
ID to the correct one.

Fixes: bfa5e98c9de4 ("igc: Add new device ID")
Signed-off-by: Sasha Neftin <sasha.neftin@intel.com>
Tested-by: Nechama Kraus <nechamax.kraus@linux.intel.com>
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
1 parent 639e298
Raw File
Tip revision: 79cc8322b6d82747cb63ea464146c0bf5b5a6bc1 authored by Sasha Neftin on 09 September 2021, 17:49:04 UTC
igc: Update I226_K device ID
Tip revision: 79cc832
gen_ksymdeps.sh
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0

set -e

# List of exported symbols
#
# If the object has no symbol, $NM warns 'no symbols'.
# Suppress the stderr.
# TODO:
#   Use -q instead of 2>/dev/null when we upgrade the minimum version of
#   binutils to 2.37, llvm to 13.0.0.
ksyms=$($NM $1 2>/dev/null | sed -n 's/.*__ksym_marker_\(.*\)/\1/p')

if [ -z "$ksyms" ]; then
	exit 0
fi

echo
echo "ksymdeps_$1 := \\"

for s in $ksyms
do
	printf '    $(wildcard include/ksym/%s) \\\n' "$s"
done

echo
echo "$1: \$(ksymdeps_$1)"
echo
echo "\$(ksymdeps_$1):"
back to top