Searched +full:rev +full:- +full:list (Results 1 – 3 of 3) sorted by relevance
8 # with OP-TEE (for QEMU)9 if [ -z "$CHECKPATCH" ]; then10 CHECKPATCH=$(command -v checkpatch.pl)12 if [ -z "$CHECKPATCH" ]; then13 CHECKPATCH=$(find /usr/src/linux-headers* -name checkpatch.pl -print -quit)15 if [ -z "$CHECKPATCH" ]; then16 CHECKPATCH=$(find "$PWD/../linux" -name checkpatch.pl -print -quit)25 cat <<-EOF27 checkpatch.sh [--working]30 checkpatch.sh --diff <COMMIT> <COMMIT>[all …]
1 // SPDX-License-Identifier: BSD-2-Clause11 * this list of conditions and the following disclaimer.14 * this list of conditions and the following disclaimer in the documentation66 register_ddr(CFG_DRAM0_BASE, (CFG_TZDRAM_START - CFG_DRAM0_BASE));138 gic_offset = fdt_path_offset(fdt, "/soc/interrupt-controller@6000000"); in get_gic_base_addr_from_dt()142 "/interrupt-controller@6000000"); in get_gic_base_addr_from_dt()171 uint32_t rev = 0; in get_gic_offset() local180 rev = get_be32((void *)addr); in get_gic_offset()182 if ((rev & SVR_MINOR_MASK) == 1) { in get_gic_offset()
6 group: ci-${{ github.ref }} # unique per branch7 cancel-in-progress: true # cancel previous runs on the same branch11 runs-on: ubuntu-latest14 - name: Checkout17 fetch-depth: 0 # full history so checkpatch can check commit IDs in commit messages18 - name: Update Git config19 run: git config --globa[all...]