spi: spi-fsl-qspi: Fix return value check of devm_ioremap() in probe
[linux/fpc-iii.git] / scripts / dummy-tools / ld
blobf682330504058e5dd861ca02e065f04876bf8fdd
1 #!/bin/sh
2 # SPDX-License-Identifier: GPL-2.0-only
4 # Dummy script that always succeeds.
6 # Check if the first parameter appears in the rest. Succeeds if found.
7 # This helper is useful if a particular option was passed to this script.
8 # Typically used like this:
9 # arg_contain <word-you-are-searching-for> "$@"
10 arg_contain ()
12 search="$1"
13 shift
15 while [ $# -gt 0 ]
17 if [ "$search" = "$1" ]; then
18 return 0
20 shift
21 done
23 return 1
26 if arg_contain --version "$@" || arg_contain -v "$@"; then
27 progname=$(basename $0)
28 echo "GNU $progname (scripts/dummy-tools/$progname) 2.50"
29 exit 0