Skip to content
Snippets Groups Projects
Select Git revision
  • 0ffa0285052607513a29f529ddb5061c907fd8a6
  • vme-testing default
  • ci-test
  • master
  • remoteproc
  • am625-sk-ov5640
  • pcal6534-upstreaming
  • lps22df-upstreaming
  • msc-upstreaming
  • imx8mp
  • iio/noa1305
  • vme-next
  • vme-next-4.14-rc4
  • v4.14-rc4
  • v4.14-rc3
  • v4.14-rc2
  • v4.14-rc1
  • v4.13
  • vme-next-4.13-rc7
  • v4.13-rc7
  • v4.13-rc6
  • v4.13-rc5
  • v4.13-rc4
  • v4.13-rc3
  • v4.13-rc2
  • v4.13-rc1
  • v4.12
  • v4.12-rc7
  • v4.12-rc6
  • v4.12-rc5
  • v4.12-rc4
  • v4.12-rc3
32 results

spi_bitbang.c

Blame
  • run-checkpatch.sh 637 B
    #!/bin/bash
    # SPDX-License-Identifier: GPL-2.0-or-later
    #
    # Copyright (C) 2024 Collabora, Helen Koike <helen.koike@collabora.com>
    
    set -exo pipefail
    
    source ci/gitlab-ci/ci-scripts/ici-functions.sh
    
    ici_get_patch_series_size
    
    # Run scripts/checkpatch.pl with specified options
    scripts/checkpatch.pl --terse --types "$KCI_CHECKPATCH_TYPES" --git HEAD-"$ICI_PATCH_SERIES_SIZE"
    
    if [ -n "$ICI_UNABLE_TO_DETECT_PATCH_SERIES_SIZE" ]; then
        # If the patch series size was not detected, exit with a warning
        echo "The patch series size was not detected, we probably didn't check the whole series. Exiting with a warning."
        exit 101
    fi