| /linux-6.15/Documentation/timers/ |
| H A D | highres.rst | 48 code out of the architecture-specific areas into a generic management 52 decision. The low level code provides hardware setup and readout routines and 55 related functionality is moved into the generic code. The GTOD base patch got 77 dependent code. This results in duplicated code across all architectures and 87 to minimize the clock event related architecture dependent code to the pure 89 clock event devices. It also minimizes the duplicated code across the 94 code or at module insertion time. Each clock event device fills a data 118 to the core code. 128 increase of flexibility and the avoidance of duplicated code across 175 from the clock event distribution code and moves expired timers from the [all …]
|
| /linux-6.15/drivers/media/platform/st/stm32/ |
| H A D | stm32-csi.c | 204 u32 code; member 212 .code = MEDIA_BUS_FMT_##mbus, \ 333 .code = MEDIA_BUS_FMT_RGB565_1X16, 346 if (stm32_csi_formats[i].code == code) in stm32_csi_code_to_fmt() 463 fmt = stm32_csi_code_to_fmt(sink_fmt->code); in stm32_csi_start() 605 fmt = stm32_csi_code_to_fmt(mbus_fmt->code); in stm32_csi_start_vc() 608 if (mbus_fmt->code == MEDIA_BUS_FMT_JPEG_1X8) { in stm32_csi_start_vc() 729 struct v4l2_subdev_mbus_code_enum *code) in stm32_csi_enum_mbus_code() argument 734 code->code = stm32_csi_formats[code->index].code; in stm32_csi_enum_mbus_code() 749 format->format.code); in stm32_csi_set_pad_format() [all …]
|
| /linux-6.15/drivers/staging/sm750fb/ |
| H A D | TODO | 4 - refine the code and remove unused code 7 are supposed to be sample code which is given here if someone wants to
|
| /linux-6.15/arch/arm/boot/dts/nxp/imx/ |
| H A D | imx53-ard.dts | 60 linux,code = <KEY_HOME>; 67 linux,code = <KEY_BACK>; 74 linux,code = <KEY_PROGRAM >; 81 linux,code = <KEY_VOLUMEUP>; 87 linux,code = <KEY_VOLUMEDOWN>;
|
| /linux-6.15/arch/mips/kernel/ |
| H A D | ftrace.c | 255 unsigned int code; in ftrace_get_parent_ra_addr() local 271 safe_load_code(code, ip, faulted); in ftrace_get_parent_ra_addr() 280 if ((code & S_R_SP) != S_R_SP) in ftrace_get_parent_ra_addr() 285 } while ((code & S_RA_SP) != S_RA_SP); in ftrace_get_parent_ra_addr() 287 sp = fp + (code & OFFSET_MASK); in ftrace_get_parent_ra_addr()
|
| /linux-6.15/drivers/net/ethernet/realtek/ |
| H A D | r8169_firmware.c | 40 #define FW_OPCODE_SIZE sizeof_field(struct rtl_fw_phy_action, code[0]) 73 pa->code = (__le32 *)(fw->data + start); in rtl_fw_format_ok() 81 pa->code = (__le32 *)fw->data; in rtl_fw_format_ok() 94 u32 action = le32_to_cpu(pa->code[index]); in rtl_fw_data_ok() 149 u32 action = le32_to_cpu(pa->code[index]); in rtl_fw_write_firmware()
|
| /linux-6.15/net/bridge/netfilter/ |
| H A D | nft_reject_bridge.c | 64 int hook, u8 code) in nft_reject_br_send_v4_unreach() argument 68 nskb = nf_reject_skb_v4_unreach(net, oldskb, NULL, hook, code); in nft_reject_br_send_v4_unreach() 97 int hook, u8 code) in nft_reject_br_send_v6_unreach() argument 101 nskb = nf_reject_skb_v6_unreach(net, oldskb, NULL, hook, code); in nft_reject_br_send_v6_unreach() 169 regs->verdict.code = NF_DROP; in nft_reject_bridge_eval()
|
| /linux-6.15/drivers/input/ |
| H A D | input-leds.c | 47 unsigned int code; /* One of LED_* constants */ member 61 return test_bit(led->code, input->led) ? cdev->max_brightness : 0; in input_leds_brightness_get() 69 input_inject_event(led->handle, EV_LED, led->code, !!brightness); in input_leds_brightness_set() 73 unsigned int code, int value) in input_leds_event() argument 130 led->code = led_code; in input_leds_connect()
|
| /linux-6.15/Documentation/driver-api/mmc/ |
| H A D | mmc-test.rst | 33 .. code-block:: none 45 .. code-block:: none 66 .. code-block:: sh 74 .. code-block:: sh 80 .. code-block:: sh 86 .. code-block:: none 100 .. code-block:: sh 106 .. code-block:: sh 114 .. code-block:: sh 120 .. code-block:: sh [all …]
|
| /linux-6.15/arch/powerpc/kernel/ |
| H A D | traps.c | 1197 int code = 0; in parse_fpe() local 1462 int code = 0; in emulate_math() local 1650 code = BUS_ADRALN; in DEFINE_INTERRUPT_HANDLER() 1671 code = SEGV_ACCERR; in DEFINE_INTERRUPT_HANDLER() 1674 code = BUS_ADRALN; in DEFINE_INTERRUPT_HANDLER() 2152 int code = FPE_FLTUNK; in DEFINE_INTERRUPT_HANDLER() local 2163 code = FPE_FLTOVF; in DEFINE_INTERRUPT_HANDLER() 2166 code = FPE_FLTUND; in DEFINE_INTERRUPT_HANDLER() 2169 code = FPE_FLTDIV; in DEFINE_INTERRUPT_HANDLER() 2171 code = FPE_FLTINV; in DEFINE_INTERRUPT_HANDLER() [all …]
|
| /linux-6.15/Documentation/process/ |
| H A D | volatile-considered-harmful.rst | 9 sometimes tempted to use it in kernel code when shared data structures are 12 kernel code is almost never correct; this document describes why. 25 almost certainly a bug in the code somewhere. In properly-written kernel 26 code, volatile can only serve to slow things down. 28 Consider a typical block of kernel code:: 35 If all the code follows the locking rules, the value of shared_data cannot 36 change unexpectedly while the_lock is held. Any other code which might 81 - Inline assembly code which changes memory, but which has no other 98 For most code, none of the above justifications for volatile apply. As a 100 additional scrutiny to the code. Developers who are tempted to use
|
| /linux-6.15/Documentation/iio/ |
| H A D | adxl380.rst | 90 .. code-block:: bash 114 .. code-block:: bash 121 .. code-block:: bash 138 .. code-block:: bash 149 .. code-block:: bash 162 .. code-block:: bash 186 .. code-block:: bash 195 .. code-block:: bash 201 .. code-block:: bash 207 .. code-block:: bash
|
| /linux-6.15/Documentation/input/ |
| H A D | uinput.rst | 44 .. code-block:: c 48 void emit(int fd, int type, int code, int val) 53 ie.code = code; 90 * to send. This pause is only needed in our example code! 118 .. code-block:: c 153 * to send. This pause is only needed in our example code! 184 configure the new uinput device. New code should not use the old interface 187 .. code-block:: c 224 * to send. This pause is only needed in our example code!
|
| /linux-6.15/drivers/media/platform/ti/cal/ |
| H A D | cal.c | 64 .code = MEDIA_BUS_FMT_YUYV8_1X16, 68 .code = MEDIA_BUS_FMT_UYVY8_1X16, 72 .code = MEDIA_BUS_FMT_YVYU8_1X16, 76 .code = MEDIA_BUS_FMT_VYUY8_1X16, 80 .code = MEDIA_BUS_FMT_RGB565_1X16, 84 .code = MEDIA_BUS_FMT_SBGGR8_1X8, 88 .code = MEDIA_BUS_FMT_SGBRG8_1X8, 92 .code = MEDIA_BUS_FMT_SGRBG8_1X8, 96 .code = MEDIA_BUS_FMT_SRGGB8_1X8, 100 .code = MEDIA_BUS_FMT_SBGGR10_1X10, [all …]
|
| /linux-6.15/net/netfilter/ |
| H A D | nft_tproxy.c | 35 regs->verdict.code = NFT_BREAK; in nft_tproxy_eval_v4() 41 regs->verdict.code = NFT_BREAK; in nft_tproxy_eval_v4() 80 regs->verdict.code = NFT_BREAK; in nft_tproxy_eval_v4() 102 regs->verdict.code = NFT_BREAK; in nft_tproxy_eval_v6() 109 regs->verdict.code = NFT_BREAK; in nft_tproxy_eval_v6() 153 regs->verdict.code = NFT_BREAK; in nft_tproxy_eval_v6() 182 regs->verdict.code = NFT_BREAK; in nft_tproxy_eval()
|
| /linux-6.15/arch/openrisc/kernel/ |
| H A D | traps.c | 184 int code = FPE_FLTUNK; in do_fpe_trap() local 192 code = FPE_FLTINV; in do_fpe_trap() 194 code = FPE_FLTOVF; in do_fpe_trap() 196 code = FPE_FLTUND; in do_fpe_trap() 198 code = FPE_FLTDIV; in do_fpe_trap() 200 code = FPE_FLTRES; in do_fpe_trap() 206 force_sig_fault(SIGFPE, code, (void __user *)regs->pc); in do_fpe_trap()
|
| /linux-6.15/Documentation/arch/xtensa/ |
| H A D | mmu.rst | 5 The code in the initialize_mmu macro sets up MMUv3 memory mapping 7 CONFIG_INITIALIZE_XTENSA_MMU_INSIDE_VMLINUX symbol this code is 11 The code has the following assumptions: 13 - This code fragment is run only on an MMU v3. 26 - pc = physical range that contains this code; 31 in this code. After step 4, we jump to intended (linked) address of this code.
|
| /linux-6.15/sound/firewire/fireface/ |
| H A D | ff-protocol-latter.c | 175 unsigned int code; in latter_allocate_resources() local 183 code = 0x04; in latter_allocate_resources() 185 code = 0x02; in latter_allocate_resources() 187 code = 0x00; in latter_allocate_resources() 192 code |= 0x08; in latter_allocate_resources() 194 code |= 0x10; in latter_allocate_resources() 196 reg = cpu_to_le32(code); in latter_allocate_resources()
|
| /linux-6.15/drivers/staging/media/imx/ |
| H A D | imx-media-vdic.c | 492 struct v4l2_subdev_mbus_code_enum *code) in vdic_enum_mbus_code() argument 494 if (code->pad >= VDIC_NUM_PADS) in vdic_enum_mbus_code() 497 return imx_media_enum_ipu_formats(&code->code, code->index, in vdic_enum_mbus_code() 533 *cc = imx_media_find_ipu_format(sdformat->format.code, in vdic_try_fmt() 536 u32 code; in vdic_try_fmt() local 538 imx_media_enum_ipu_formats(&code, 0, PIXFMT_SEL_YUV); in vdic_try_fmt() 539 *cc = imx_media_find_ipu_format(code, PIXFMT_SEL_YUV); in vdic_try_fmt() 540 sdformat->format.code = (*cc)->codes[0]; in vdic_try_fmt() 812 u32 code; in vdic_registered() local 815 code = 0; in vdic_registered() [all …]
|
| /linux-6.15/arch/x86/ |
| H A D | Kconfig.debug | 22 early before the console code is initialized. For normal operation 35 early before the console code is initialized. For normal operation 48 machine crashes very early before the regular console code is 79 to -1, the code flushes the whole TLB unconditionally. Otherwise, 93 memory and add debugging code. On overflow always panic. And 97 code. When you use it make sure you have a big enough 120 decoder code. 161 bool "CPA self-test code" 167 bool "Debug low-level entry code" 192 This option enables automated sanity testing of the IMR code. [all …]
|
| /linux-6.15/arch/alpha/kernel/ |
| H A D | traps.c | 202 int signo, code; in do_entIF() local 264 code = FPE_INTOVF; in do_entIF() 268 code = FPE_INTDIV; in do_entIF() 272 code = FPE_FLTOVF; in do_entIF() 276 code = FPE_FLTDIV; in do_entIF() 280 code = FPE_FLTUND; in do_entIF() 284 code = FPE_FLTINV; in do_entIF() 288 code = FPE_FLTRES; in do_entIF() 292 code = FPE_FLTUNK; in do_entIF() 314 code = TRAP_UNK; in do_entIF() [all …]
|
| /linux-6.15/drivers/media/i2c/ |
| H A D | ov5640.c | 194 u32 code; member 204 .code = MEDIA_BUS_FMT_JPEG_1X8, 211 .code = MEDIA_BUS_FMT_UYVY8_2X8, 218 .code = MEDIA_BUS_FMT_YUYV8_2X8, 272 .code = MEDIA_BUS_FMT_JPEG_1X8, 500 if (formats[i].code == code) in ov5640_code_to_pixfmt() 510 code); in ov5640_code_to_bpp() 536 .code = MEDIA_BUS_FMT_UYVY8_2X8, 2844 fmt->code = pixfmt->code; in ov5640_try_fmt_internal() 2983 if (mbus_fmt->code != sensor->fmt.code) in ov5640_set_fmt() [all …]
|
| /linux-6.15/Documentation/admin-guide/nfs/ |
| H A D | nfs-rdma.rst | 61 .. code-block:: sh 77 .. code-block:: sh 92 .. code-block:: sh 167 .. code-block:: sh 179 .. code-block:: sh 189 .. code-block:: sh 235 .. code-block:: sh 250 .. code-block:: sh 257 .. code-block:: sh 263 .. code-block:: sh [all …]
|
| /linux-6.15/drivers/input/keyboard/ |
| H A D | gpio_keys.c | 38 unsigned short *code; member 221 __set_bit(*bdata->code, bits); in gpio_keys_attr_show_helper() 269 if (test_bit(*bdata->code, bits) && in gpio_keys_attr_store_helper() 283 if (test_bit(*bdata->code, bits)) in gpio_keys_attr_store_helper() 380 input_event(input, type, *bdata->code, state); in gpio_keys_gpio_report_event() 453 input_report_key(input, *bdata->code, 0); in gpio_keys_irq_timer() 474 input_report_key(input, *bdata->code, 1); in gpio_keys_irq_isr() 478 input_report_key(input, *bdata->code, 0); in gpio_keys_irq_isr() 642 bdata->code = &ddata->keymap[idx]; in gpio_keys_setup_key() 643 *bdata->code = button->code; in gpio_keys_setup_key() [all …]
|
| /linux-6.15/Documentation/devicetree/bindings/input/ |
| H A D | allwinner,sun4i-a10-lradc-keys.yaml | 56 linux,code: true 71 - linux,code 107 linux,code = <115>; 114 linux,code = <114>;
|