/linux-6.6.21/drivers/media/pci/bt8xx/ |
D | dst_ca.c | 44 static unsigned int verbose = 5; variable 45 module_param(verbose, int, 0644); 46 MODULE_PARM_DESC(verbose, "verbose startup messages, default is 1 (yes)"); 58 dprintk(verbose, DST_CA_DEBUG, 1, " Computing string checksum."); in put_checksum() 59 dprintk(verbose, DST_CA_DEBUG, 1, " -> string length : 0x%02x", length); in put_checksum() 61 dprintk(verbose, DST_CA_DEBUG, 1, " -> checksum : 0x%02x", check_string[length]); in put_checksum() 73 dprintk(verbose, DST_CA_INFO, 1, " Write not successful, trying to recover"); in dst_ci_command() 78 dprintk(verbose, DST_CA_ERROR, 1, " DST PIO disable failed."); in dst_ci_command() 82 dprintk(verbose, DST_CA_INFO, 1, " Read not successful, trying to recover"); in dst_ci_command() 88 dprintk(verbose, DST_CA_NOTICE, 1, " 8820 not ready"); in dst_ci_command() [all …]
|
/linux-6.6.21/kernel/bpf/ |
D | disasm.c | 138 static void print_bpf_end_insn(bpf_insn_print_t verbose, in print_bpf_end_insn() argument 142 verbose(private_data, "(%02x) r%d = %s%d r%d\n", in print_bpf_end_insn() 148 static void print_bpf_bswap_insn(bpf_insn_print_t verbose, in print_bpf_bswap_insn() argument 152 verbose(private_data, "(%02x) r%d = bswap%d r%d\n", in print_bpf_bswap_insn() 173 const bpf_insn_print_t verbose = cbs->cb_print; in print_bpf_insn() local 179 print_bpf_bswap_insn(verbose, cbs->private_data, insn); in print_bpf_insn() 181 print_bpf_end_insn(verbose, cbs->private_data, insn); in print_bpf_insn() 183 verbose(cbs->private_data, "(%02x) %c%d = -%c%d\n", in print_bpf_insn() 188 verbose(cbs->private_data, "(%02x) %c%d %s %s%c%d\n", in print_bpf_insn() 197 verbose(cbs->private_data, "(%02x) %c%d %s %d\n", in print_bpf_insn() [all …]
|
D | verifier.c | 361 __printf(2, 3) static void verbose(void *private_data, const char *fmt, ...) in verbose() function 403 verbose(env, "%s\n", in verbose_linfo() 417 verbose(env, "At %s the register %s ", ctx, reg_name); in verbose_invalid_scalar() 420 verbose(env, "has value %s", tn_buf); in verbose_invalid_scalar() 422 verbose(env, "has unknown scalar value"); in verbose_invalid_scalar() 425 verbose(env, " should have been in %s\n", tn_buf); in verbose_invalid_scalar() 670 verbose(env, "_"); in print_liveness() 672 verbose(env, "r"); in print_liveness() 674 verbose(env, "w"); in print_liveness() 676 verbose(env, "D"); in print_liveness() [all …]
|
/linux-6.6.21/tools/testing/selftests/bpf/ |
D | disasm.c | 138 static void print_bpf_end_insn(bpf_insn_print_t verbose, in print_bpf_end_insn() argument 142 verbose(private_data, "(%02x) r%d = %s%d r%d\n", in print_bpf_end_insn() 148 static void print_bpf_bswap_insn(bpf_insn_print_t verbose, in print_bpf_bswap_insn() argument 152 verbose(private_data, "(%02x) r%d = bswap%d r%d\n", in print_bpf_bswap_insn() 173 const bpf_insn_print_t verbose = cbs->cb_print; in print_bpf_insn() local 179 print_bpf_bswap_insn(verbose, cbs->private_data, insn); in print_bpf_insn() 181 print_bpf_end_insn(verbose, cbs->private_data, insn); in print_bpf_insn() 183 verbose(cbs->private_data, "(%02x) %c%d = -%c%d\n", in print_bpf_insn() 188 verbose(cbs->private_data, "(%02x) %c%d %s %s%c%d\n", in print_bpf_insn() 197 verbose(cbs->private_data, "(%02x) %c%d %s %d\n", in print_bpf_insn() [all …]
|
/linux-6.6.21/drivers/media/dvb-frontends/ |
D | mb86a16.c | 19 static unsigned int verbose = 5; variable 20 module_param(verbose, int, 0644); 59 #define TRACE_IN dprintk(verbose, MB86A16_DEBUG, 1, "-->()") 60 #define TRACE_OUT dprintk(verbose, MB86A16_DEBUG, 1, "()-->") 74 dprintk(verbose, MB86A16_DEBUG, 1, in mb86a16_write() 104 dprintk(verbose, MB86A16_ERROR, 1, "read error(reg=0x%02x, ret=%i)", in mb86a16_read() 130 dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); in CNTM_set() 157 dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); in smrt_set() 168 dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); in srst() 184 dprintk(verbose, MB86A16_ERROR, 1, "I2C transfer error"); in afcex_data_set() [all …]
|
D | stv6110x_priv.h | 22 if ((verbose > FE_ERROR) && (verbose > __y)) \ 24 else if ((verbose > FE_NOTICE) && (verbose > __y)) \ 26 else if ((verbose > FE_INFO) && (verbose > __y)) \ 28 else if ((verbose > FE_DEBUG) && (verbose > __y)) \ 31 if (verbose > __y) \
|
D | isl6423.c | 20 static unsigned int verbose; variable 21 module_param(verbose, int, 0644); 22 MODULE_PARM_DESC(verbose, "Set Verbosity level"); 32 if ((verbose > FE_ERROR) && (verbose > __y)) \ 34 else if ((verbose > FE_NOTICE) && (verbose > __y)) \ 36 else if ((verbose > FE_INFO) && (verbose > __y)) \ 38 else if ((verbose > FE_DEBUG) && (verbose > __y)) \ 41 if (verbose > __y) \ 53 unsigned int verbose; member 283 isl6423->verbose = verbose; in isl6423_attach()
|
D | stb0899_drv.c | 27 static unsigned int verbose = 0;//1; variable 28 module_param(verbose, int, 0644); 237 dprintk(state->verbose, FE_ERROR, 1, in _stb0899_read_reg() 243 if (unlikely(*state->verbose >= FE_DEBUGREG)) in _stb0899_read_reg() 244 dprintk(state->verbose, FE_ERROR, 1, "Reg=[0x%02x], data=%02x", in _stb0899_read_reg() 357 if (unlikely(*state->verbose >= FE_DEBUGREG)) in _stb0899_read_s2reg() 414 if (unlikely(*state->verbose >= FE_DEBUGREG)) in stb0899_write_s2reg() 476 dprintk(state->verbose, FE_DEBUGREG, 1, in stb0899_read_regs() 506 dprintk(state->verbose, FE_DEBUGREG, 1, in stb0899_write_regs() 520 dprintk(state->verbose, FE_ERROR, 1, "Reg=[0x%04x], Data=[0x%02x ...], Count=%u, Status=%d", in stb0899_write_regs() [all …]
|
D | stb6100.c | 19 static unsigned int verbose; variable 20 module_param(verbose, int, 0644); 133 dprintk(verbose, FE_ERROR, 1, "Read (0x%x) err, rc=[%d]", in stb6100_read_regs() 138 if (unlikely(verbose > FE_DEBUG)) { in stb6100_read_regs() 141 dprintk(verbose, FE_DEBUG, 1, " Read from 0x%02x", state->config->tuner_address); in stb6100_read_regs() 143 dprintk(verbose, FE_DEBUG, 1, " %s: 0x%02x", stb6100_regnames[i], regs[i]); in stb6100_read_regs() 162 dprintk(verbose, FE_ERROR, 1, "Invalid register offset 0x%x", reg); in stb6100_read_reg() 165 if (unlikely(verbose > FE_DEBUG)) { in stb6100_read_reg() 166 dprintk(verbose, FE_DEBUG, 1, " Read from 0x%02x", state->config->tuner_address); in stb6100_read_reg() 167 dprintk(verbose, FE_DEBUG, 1, " %s: 0x%02x", stb6100_regnames[reg], regs[0]); in stb6100_read_reg() [all …]
|
D | stv090x_priv.h | 23 if ((verbose > FE_ERROR) && (verbose > __y)) \ 25 else if ((verbose > FE_NOTICE) && (verbose > __y)) \ 27 else if ((verbose > FE_INFO) && (verbose > __y)) \ 29 else if ((verbose > FE_DEBUG) && (verbose > __y)) \ 32 if (verbose > __y) \ 243 u32 *verbose; /* Cached module verbosity */ member
|
D | stb0899_algo.c | 71 dprintk(state->verbose, FE_DEBUG, 1, "-->"); in stb0899_set_srate() 179 dprintk(state->verbose, FE_DEBUG, 1, "-->ANALOG Carrier !"); in stb0899_check_tmg() 182 dprintk(state->verbose, FE_DEBUG, 1, "------->TIMING OK !"); in stb0899_check_tmg() 186 dprintk(state->verbose, FE_DEBUG, 1, "-->NO TIMING !"); in stb0899_check_tmg() 228 dprintk(state->verbose, FE_DEBUG, 1, "------->TIMING OK ! Derot Freq = %d", internal->derot_freq); in stb0899_search_tmg() 250 dprintk(state->verbose, FE_DEBUG, 1, "--------------------> STB0899_DSTATUS=[0x%02x]", reg); in stb0899_check_carrier() 253 dprintk(state->verbose, FE_DEBUG, 1, "-------------> CARRIEROK !"); in stb0899_check_carrier() 256 dprintk(state->verbose, FE_DEBUG, 1, "-------------> NOCARRIER !"); in stb0899_check_carrier() 284 dprintk(state->verbose, FE_DEBUG, 1, "Derot Freq=%d, mclk=%d", derot_freq, internal->mclk); in stb0899_search_carrier() 310 dprintk(state->verbose, FE_DEBUG, 1, "----> CARRIER OK !, Derot Freq=%d", internal->derot_freq); in stb0899_search_carrier() [all …]
|
/linux-6.6.21/tools/testing/selftests/tc-testing/ |
D | TdcPlugin.py | 12 if self.args.verbose > 1: 18 if self.args.verbose > 1: 23 if self.args.verbose > 1: 30 if self.args.verbose > 1: 35 if self.args.verbose > 1: 40 if self.args.verbose > 1: 45 if self.args.verbose > 1: 73 if self.args.verbose > 1:
|
/linux-6.6.21/drivers/media/pci/mantis/ |
D | mantis_common.h | 29 if ((mantis->verbose > MANTIS_ERROR) && (mantis->verbose > y)) \ 31 else if ((mantis->verbose > MANTIS_NOTICE) && (mantis->verbose > y)) \ 33 else if ((mantis->verbose > MANTIS_INFO) && (mantis->verbose > y)) \ 35 else if ((mantis->verbose > MANTIS_DEBUG) && (mantis->verbose > y)) \ 37 else if ((mantis->verbose > MANTIS_TMG) && (mantis->verbose > y)) \ 40 if (mantis->verbose > y) \ 100 unsigned int verbose; member
|
/linux-6.6.21/Documentation/devicetree/bindings/sound/ |
D | test-component.yaml | 16 - test-cpu-verbose 17 - test-cpu-verbose-dai 18 - test-cpu-verbose-component 20 - test-codec-verbose 21 - test-codec-verbose-dai 22 - test-codec-verbose-component
|
/linux-6.6.21/tools/perf/util/ |
D | debug.c | 35 int verbose; variable 139 veprintf(1, verbose, fmt, args); in pr_stat() 141 eprintf(1, verbose, "\n"); in pr_stat() 219 { .name = "verbose", .value_ptr = &verbose }, 236 verbose = (verbose < 0) || (verbose > 10) ? 0 : verbose; in perf_debug_option() 239 if (verbose == 1) in perf_debug_option() 241 else if (verbose == 2) in perf_debug_option() 243 else if (verbose >= 3) in perf_debug_option() 273 ret = veprintf(__l, verbose, fmt, args); \
|
D | debug.h | 11 extern int verbose; 22 eprintf(0, verbose, pr_fmt(fmt), ##__VA_ARGS__) 24 eprintf(0, verbose, pr_fmt(fmt), ##__VA_ARGS__) 33 eprintf(0, verbose, pr_fmt(fmt), ##__VA_ARGS__) 35 eprintf(1, verbose, pr_fmt(fmt), ##__VA_ARGS__) 37 eprintf(n, verbose, pr_fmt(fmt), ##__VA_ARGS__)
|
/linux-6.6.21/tools/hv/ |
D | lsvmbus | 14 verbose = 0 15 if options.verbose is not None: 16 verbose = options.verbose 98 if verbose == 0: 100 elif verbose == 1:
|
/linux-6.6.21/tools/power/cpupower/bench/ |
D | benchmark.c | 40 if (config->verbose) in calculate_timespace() 62 if (config->verbose) in calculate_timespace() 111 if (config->verbose) in start_benchmark() 119 if (config->verbose) in start_benchmark() 131 if (config->verbose) in start_benchmark() 157 if (config->verbose) in start_benchmark() 174 if (config->verbose) in start_benchmark()
|
D | system.c | 140 if (config->verbose || config->output != stdout) in prepare_user() 154 if (config->verbose) in prepare_system() 161 if (config->verbose) in prepare_system() 167 if (config->verbose) in prepare_system() 173 if (config->verbose) in prepare_system()
|
/linux-6.6.21/drivers/watchdog/ |
D | cpu5wdt.c | 26 static int verbose; variable 60 if (verbose > 2) in cpu5wdt_trigger() 85 if (verbose) in cpu5wdt_reset() 118 if (verbose) in cpu5wdt_stop() 209 if (verbose) in cpu5wdt_init() 210 pr_debug("port=0x%x, verbose=%i\n", port, verbose); in cpu5wdt_init() 281 module_param(verbose, int, 0); 282 MODULE_PARM_DESC(verbose, "be verbose, default is 0 (no)");
|
/linux-6.6.21/Documentation/sphinx/ |
D | kfigure.py | 179 kernellog.verbose(app, "kfigure: check installed tools ...") 187 kernellog.verbose(app, "use dot(1) from: " + dot_cmd) 202 kernellog.verbose(app, "use inkscape(1) from: " + inkscape_cmd) 213 kernellog.verbose(app, "use convert(1) from: " + convert_cmd) 215 kernellog.verbose(app, 222 kernellog.verbose(app, "use rsvg-convert(1) from: " + rsvg_convert_cmd) 223 kernellog.verbose(app, "use 'dot -Tsvg' and rsvg-convert(1) for DOT -> PDF conversion") 226 kernellog.verbose(app, 230 kernellog.verbose(app, "use 'dot -Tpdf' for DOT -> PDF conversion") 232 kernellog.verbose(app, "use 'dot -Tsvg' and convert(1) for DOT -> PDF conversion") [all …]
|
/linux-6.6.21/tools/testing/selftests/kvm/x86_64/ |
D | xen_shinfo_test.c | 432 bool verbose; in main() local 435 verbose = argc > 1 && (!strncmp(argv[1], "-v", 3) || in main() 641 if (verbose) in main() 651 if (verbose) in main() 660 if (verbose) in main() 675 if (verbose) in main() 687 if (verbose) in main() 699 if (verbose) in main() 707 if (verbose) in main() 721 if (verbose) in main() [all …]
|
/linux-6.6.21/tools/perf/tests/shell/ |
D | stat_bpf_counters_cgrp.sh | 9 verbose="1" 16 if [ "${verbose}" = "1" ]; then 54 if [ "${verbose}" = "1" ]; then 66 if [ "${verbose}" = "1" ]; then
|
/linux-6.6.21/lib/ |
D | test_lockup.c | 169 static void test_lock(bool master, bool verbose) in test_lock() argument 177 if (verbose) in test_lock() 183 if (verbose) in test_lock() 193 if (verbose) in test_lock() 214 if (verbose) in test_lock() 221 if (verbose) in test_lock() 246 static void test_unlock(bool master, bool verbose) in test_unlock() argument 253 if (verbose) in test_unlock() 260 if (verbose) in test_unlock() 282 if (verbose) in test_unlock() [all …]
|
/linux-6.6.21/arch/arm/boot/compressed/ |
D | decompress.c | 18 # define Tracev(x) {if (verbose) fprintf x ;} 19 # define Tracevv(x) {if (verbose>1) fprintf x ;} 20 # define Tracec(c,x) {if (verbose && (c)) fprintf x ;} 21 # define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
|