| /kernel/linux/linux-5.10/Documentation/admin-guide/ |
| D | kernel-parameters.rst | 81 enabled and if respective hardware is present. The text in square brackets at 85 ACPI ACPI support is enabled. 86 AGP AGP (Accelerated Graphics Port) is enabled. 87 ALSA ALSA sound support is enabled. 88 APIC APIC support is enabled. 89 APM Advanced Power Management support is enabled. 90 ARM ARM architecture is enabled. 91 ARM64 ARM64 architecture is enabled. 92 AX25 Appropriate AX.25 support is enabled. 93 CLK Common clock infrastructure is enabled. [all …]
|
| /kernel/linux/linux-4.19/Documentation/admin-guide/ |
| D | kernel-parameters.rst | 81 enabled and if respective hardware is present. The text in square brackets at 85 ACPI ACPI support is enabled. 86 AGP AGP (Accelerated Graphics Port) is enabled. 87 ALSA ALSA sound support is enabled. 88 APIC APIC support is enabled. 89 APM Advanced Power Management support is enabled. 90 ARM ARM architecture is enabled. 91 AX25 Appropriate AX.25 support is enabled. 92 CLK Common clock infrastructure is enabled. 93 CMA Contiguous Memory Area support is enabled. [all …]
|
| /kernel/linux/linux-5.10/arch/powerpc/kernel/ |
| D | secure_boot.c | 25 bool enabled = false; in is_ppc_secureboot_enabled() local 29 enabled = of_property_read_bool(node, "os-secureboot-enforcing"); in is_ppc_secureboot_enabled() 32 if (enabled) in is_ppc_secureboot_enabled() 36 enabled = (secureboot > 1); in is_ppc_secureboot_enabled() 39 pr_info("Secure boot mode %s\n", enabled ? "enabled" : "disabled"); in is_ppc_secureboot_enabled() 41 return enabled; in is_ppc_secureboot_enabled() 47 bool enabled = false; in is_ppc_trustedboot_enabled() local 51 enabled = of_property_read_bool(node, "trusted-enabled"); in is_ppc_trustedboot_enabled() 54 if (enabled) in is_ppc_trustedboot_enabled() 58 enabled = (trustedboot > 0); in is_ppc_trustedboot_enabled() [all …]
|
| /kernel/linux/linux-5.10/drivers/pinctrl/aspeed/ |
| D | pinmux-aspeed.c | 24 * Query the enabled or disabled state of a signal descriptor 27 * @enabled: True to query the enabled state, false to query disabled state 31 * selected by @enabled, 0 if not, and less than zero if an unrecoverable 36 * a value that is neither the enabled nor disabled state recorded in the 38 * is enabled). Thus we must explicitly test for either condition as required. 41 bool enabled, struct regmap *map) in aspeed_sig_desc_eval() argument 54 aspeed_sig_desc_print_val(desc, enabled, raw); in aspeed_sig_desc_eval() 55 want = enabled ? desc->enable : desc->disable; in aspeed_sig_desc_eval() 61 * Query the enabled or disabled state for a mux function's signal on a pin 65 * @enabled: True to query the enabled state, false to query disabled state [all …]
|
| /kernel/linux/linux-5.10/drivers/net/wireless/broadcom/b43/ |
| D | rfkill.c | 15 /* Returns TRUE, if the radio is enabled in hardware. */ 27 bool enabled; in b43_rfkill_poll() local 40 enabled = b43_is_hw_radio_enabled(dev); in b43_rfkill_poll() 42 if (unlikely(enabled != dev->radio_hw_enable)) { in b43_rfkill_poll() 43 dev->radio_hw_enable = enabled; in b43_rfkill_poll() 45 enabled ? "ENABLED" : "DISABLED"); in b43_rfkill_poll() 46 wiphy_rfkill_set_hw_state(hw->wiphy, !enabled); in b43_rfkill_poll() 47 if (enabled != dev->phy.radio_on) in b43_rfkill_poll() 48 b43_software_rfkill(dev, !enabled); in b43_rfkill_poll()
|
| /kernel/linux/linux-4.19/drivers/net/wireless/broadcom/b43/ |
| D | rfkill.c | 28 /* Returns TRUE, if the radio is enabled in hardware. */ 40 bool enabled; in b43_rfkill_poll() local 53 enabled = b43_is_hw_radio_enabled(dev); in b43_rfkill_poll() 55 if (unlikely(enabled != dev->radio_hw_enable)) { in b43_rfkill_poll() 56 dev->radio_hw_enable = enabled; in b43_rfkill_poll() 58 enabled ? "ENABLED" : "DISABLED"); in b43_rfkill_poll() 59 wiphy_rfkill_set_hw_state(hw->wiphy, !enabled); in b43_rfkill_poll() 60 if (enabled != dev->phy.radio_on) in b43_rfkill_poll() 61 b43_software_rfkill(dev, !enabled); in b43_rfkill_poll()
|
| /kernel/linux/linux-5.10/drivers/net/wireless/broadcom/b43legacy/ |
| D | rfkill.c | 16 /* Returns TRUE, if the radio is enabled in hardware. */ 44 bool enabled; in b43legacy_rfkill_poll() local 57 enabled = b43legacy_is_hw_radio_enabled(dev); in b43legacy_rfkill_poll() 59 if (unlikely(enabled != dev->radio_hw_enable)) { in b43legacy_rfkill_poll() 60 dev->radio_hw_enable = enabled; in b43legacy_rfkill_poll() 62 enabled ? "ENABLED" : "DISABLED"); in b43legacy_rfkill_poll() 63 wiphy_rfkill_set_hw_state(hw->wiphy, !enabled); in b43legacy_rfkill_poll() 64 if (enabled != dev->phy.radio_on) { in b43legacy_rfkill_poll() 65 if (enabled) in b43legacy_rfkill_poll()
|
| /kernel/linux/linux-5.10/drivers/regulator/ |
| D | userspace-consumer.c | 26 bool enabled; member 45 if (data->enabled) in reg_show_state() 46 return sprintf(buf, "enabled\n"); in reg_show_state() 55 bool enabled; in reg_set_state() local 62 if (sysfs_streq(buf, "enabled\n") || sysfs_streq(buf, "1")) in reg_set_state() 63 enabled = true; in reg_set_state() 65 enabled = false; in reg_set_state() 72 if (enabled != data->enabled) { in reg_set_state() 73 if (enabled) in reg_set_state() 81 data->enabled = enabled; in reg_set_state() [all …]
|
| /kernel/linux/linux-4.19/drivers/regulator/ |
| D | userspace-consumer.c | 31 bool enabled; member 50 if (data->enabled) in reg_show_state() 51 return sprintf(buf, "enabled\n"); in reg_show_state() 60 bool enabled; in reg_set_state() local 67 if (sysfs_streq(buf, "enabled\n") || sysfs_streq(buf, "1")) in reg_set_state() 68 enabled = true; in reg_set_state() 70 enabled = false; in reg_set_state() 77 if (enabled != data->enabled) { in reg_set_state() 78 if (enabled) in reg_set_state() 86 data->enabled = enabled; in reg_set_state() [all …]
|
| /kernel/linux/linux-5.10/include/trace/events/ |
| D | rtc.h | 82 TP_PROTO(int enabled, int err), 84 TP_ARGS(enabled, err), 87 __field(int, enabled) 92 __entry->enabled = enabled; 97 __entry->enabled ? "enable" : "disable", 104 TP_PROTO(unsigned int enabled, int err), 106 TP_ARGS(enabled, err), 109 __field(unsigned int, enabled) 114 __entry->enabled = enabled; 119 __entry->enabled ? "enable" : "disable",
|
| /kernel/linux/linux-4.19/include/trace/events/ |
| D | rtc.h | 82 TP_PROTO(int enabled, int err), 84 TP_ARGS(enabled, err), 87 __field(int, enabled) 92 __entry->enabled = enabled; 97 __entry->enabled ? "enable" : "disable", 104 TP_PROTO(unsigned int enabled, int err), 106 TP_ARGS(enabled, err), 109 __field(unsigned int, enabled) 114 __entry->enabled = enabled; 119 __entry->enabled ? "enable" : "disable",
|
| /kernel/linux/linux-4.19/drivers/net/wireless/broadcom/b43legacy/ |
| D | rfkill.c | 29 /* Returns TRUE, if the radio is enabled in hardware. */ 57 bool enabled; in b43legacy_rfkill_poll() local 70 enabled = b43legacy_is_hw_radio_enabled(dev); in b43legacy_rfkill_poll() 72 if (unlikely(enabled != dev->radio_hw_enable)) { in b43legacy_rfkill_poll() 73 dev->radio_hw_enable = enabled; in b43legacy_rfkill_poll() 75 enabled ? "ENABLED" : "DISABLED"); in b43legacy_rfkill_poll() 76 wiphy_rfkill_set_hw_state(hw->wiphy, !enabled); in b43legacy_rfkill_poll() 77 if (enabled != dev->phy.radio_on) { in b43legacy_rfkill_poll() 78 if (enabled) in b43legacy_rfkill_poll()
|
| /kernel/linux/linux-4.19/Documentation/networking/ |
| D | ipvs-sysctl.txt | 15 enabled and the variable is automatically set to 2, otherwise 20 not 0 - enabled 48 not 0 - enabled 53 This should be enabled if connections handled by IPVS are to be 61 Only available when IPVS is compiled with CONFIG_IP_VS_NFCT enabled. 65 not 0 - enabled 67 If it is enabled, forward packets to the original destination 87 Only available when IPVS is compiled with CONFIG_IP_VS_DEBUG enabled. 108 is enabled and the variable is automatically set to 2, 110 1), and 3 means that that the strategy is always enabled. [all …]
|
| D | vxge.txt | 44 v) Offloads supported: (Enabled by default) 49 vi) MSI-X: (Enabled by default) 53 vii) NAPI: (Enabled by default) 56 viii)RTH (Receive Traffic Hash): (Enabled by default) 63 x) Multiple hardware queues: (Enabled by default) 65 multiple steering options (transmit multiqueue enabled by default). 71 Specifies maximum device functions to be enabled. 75 Specifies number of ports to be enabled. 86 Valid range: 0,1 (disabled, enabled respectively) 92 Valid range: 0,1 (disabled, enabled respectively)
|
| D | nf_conntrack-sysctl.txt | 5 not 0 - enabled 20 not 0 - enabled (default) 23 in INVALID state. If this is enabled, such packets will not be 31 not 0 - enabled (default) 33 If this option is enabled, the connection tracking code will 66 not 0 - enabled 101 not 0 - enabled 108 not 0 - enabled (default) 152 not 0 - enabled
|
| /kernel/linux/linux-4.19/drivers/base/power/ |
| D | sysfs.c | 36 * + "enabled\n" to issue the events; 65 * state transitions can be enabled by writing "enabled" to this file. 71 * + "enabled\n" to permit the asynchronous suspend/resume of the device; 77 * attribute is set to "enabled" by bus type code or device drivers and in 320 static const char _enabled[] = "enabled"; 352 bool enabled = false; in wakeup_count_show() local 357 enabled = true; in wakeup_count_show() 360 return enabled ? sprintf(buf, "%lu\n", count) : sprintf(buf, "\n"); in wakeup_count_show() 370 bool enabled = false; in wakeup_active_count_show() local 375 enabled = true; in wakeup_active_count_show() [all …]
|
| /kernel/linux/linux-5.10/drivers/base/power/ |
| D | sysfs.c | 36 * + "enabled\n" to issue the events; 65 * state transitions can be enabled by writing "enabled" to this file. 71 * + "enabled\n" to permit the asynchronous suspend/resume of the device; 77 * attribute is set to "enabled" by bus type code or device drivers and in 321 static const char _enabled[] = "enabled"; 353 bool enabled = false; in wakeup_count_show() local 358 enabled = true; in wakeup_count_show() 362 if (!enabled) in wakeup_count_show() 374 bool enabled = false; in wakeup_active_count_show() local 379 enabled = true; in wakeup_active_count_show() [all …]
|
| /kernel/linux/linux-5.10/Documentation/networking/ |
| D | ipvs-sysctl.rst | 22 enabled and the variable is automatically set to 2, otherwise 27 - not 0 - enabled 55 - not 0 - enabled 60 This should be enabled if connections handled by IPVS are to be 68 Only available when IPVS is compiled with CONFIG_IP_VS_NFCT enabled. 72 - not 0 - enabled 74 If it is enabled, forward packets to the original destination 94 Only available when IPVS is compiled with CONFIG_IP_VS_DEBUG enabled. 115 is enabled and the variable is automatically set to 2, 117 1), and 3 means that the strategy is always enabled. [all …]
|
| /kernel/linux/linux-5.10/drivers/net/ |
| D | netconsole.c | 80 * @enabled: On / off knob to enable / disable target. 85 * runtime only when it is disabled (enabled == 0). 101 bool enabled; member 199 nt->enabled = true; in alloc_param_target() 223 * | enabled 248 return snprintf(buf, PAGE_SIZE, "%d\n", to_target(item)->enabled); in enabled_show() 306 * are not enabled (and the corresponding netpoll activated) by default. 316 int enabled; in enabled_store() local 320 err = kstrtoint(buf, 10, &enabled); in enabled_store() 325 if (enabled < 0 || enabled > 1) in enabled_store() [all …]
|
| /kernel/linux/linux-5.10/drivers/gpu/drm/rcar-du/ |
| D | rcar_cmm.c | 28 * @lut.enabled: 1D-LUT enabled flag 31 bool enabled; member 74 * and its functional clock enabled. To guarantee this, before any call to 75 * this function is made, the CMM unit has to be enabled by calling 88 if (rcmm->lut.enabled) { in rcar_cmm_setup() 90 rcmm->lut.enabled = false; in rcar_cmm_setup() 97 if (!rcmm->lut.enabled) { in rcar_cmm_setup() 99 rcmm->lut.enabled = true; in rcar_cmm_setup() 113 * the unit shall be enabled before the DU channel is started, and remain 114 * enabled until the channel is stopped. The CMM unit shall be disabled with [all …]
|
| /kernel/linux/linux-5.10/Documentation/networking/device_drivers/ethernet/neterion/ |
| D | vxge.rst | 52 v) Offloads supported: (Enabled by default) 58 vi) MSI-X: (Enabled by default) 63 vii) NAPI: (Enabled by default) 67 viii)RTH (Receive Traffic Hash): (Enabled by default) 76 x) Multiple hardware queues: (Enabled by default) 79 multiple steering options (transmit multiqueue enabled by default). 85 Specifies maximum device functions to be enabled. 90 Specifies number of ports to be enabled. 105 Valid range: 0,1 (disabled, enabled respectively) 113 Valid range: 0,1 (disabled, enabled respectively)
|
| /kernel/linux/linux-4.19/arch/mips/oprofile/ |
| D | op_model_loongson2.c | 63 if (cfg[0].enabled) { in loongson2_reg_setup() 68 if (cfg[1].enabled) { in loongson2_reg_setup() 73 if (cfg[0].enabled || cfg[1].enabled) { in loongson2_reg_setup() 83 reg.cnt1_enabled = cfg[0].enabled; in loongson2_reg_setup() 84 reg.cnt2_enabled = cfg[1].enabled; in loongson2_reg_setup() 110 int enabled; in loongson2_perfcount_handler() local 113 enabled = read_c0_perfctrl() & LOONGSON2_PERFCTRL_ENABLE; in loongson2_perfcount_handler() 114 if (!enabled) in loongson2_perfcount_handler() 116 enabled = reg.cnt1_enabled | reg.cnt2_enabled; in loongson2_perfcount_handler() 117 if (!enabled) in loongson2_perfcount_handler()
|
| /kernel/linux/linux-5.10/arch/mips/oprofile/ |
| D | op_model_loongson2.c | 63 if (cfg[0].enabled) { in loongson2_reg_setup() 68 if (cfg[1].enabled) { in loongson2_reg_setup() 73 if (cfg[0].enabled || cfg[1].enabled) { in loongson2_reg_setup() 83 reg.cnt1_enabled = cfg[0].enabled; in loongson2_reg_setup() 84 reg.cnt2_enabled = cfg[1].enabled; in loongson2_reg_setup() 110 int enabled; in loongson2_perfcount_handler() local 113 enabled = read_c0_perfctrl() & LOONGSON2_PERFCTRL_ENABLE; in loongson2_perfcount_handler() 114 if (!enabled) in loongson2_perfcount_handler() 116 enabled = reg.cnt1_enabled | reg.cnt2_enabled; in loongson2_perfcount_handler() 117 if (!enabled) in loongson2_perfcount_handler()
|
| /kernel/linux/linux-4.19/drivers/net/ |
| D | netconsole.c | 92 * @enabled: On / off knob to enable / disable target. 97 * runtime only when it is disabled (enabled == 0). 113 bool enabled; member 211 nt->enabled = true; in alloc_param_target() 235 * | enabled 260 return snprintf(buf, PAGE_SIZE, "%d\n", to_target(item)->enabled); in enabled_show() 318 * are not enabled (and the corresponding netpoll activated) by default. 328 int enabled; in enabled_store() local 332 err = kstrtoint(buf, 10, &enabled); in enabled_store() 337 if (enabled < 0 || enabled > 1) in enabled_store() [all …]
|
| /kernel/linux/linux-5.10/drivers/rtc/ |
| D | interface.c | 141 uie = rtc->uie_rtctimer.enabled || rtc->uie_irq_active; in rtc_set_time() 143 uie = rtc->uie_rtctimer.enabled; in rtc_set_time() 192 alarm->enabled = 0; in rtc_read_alarm_internal() 399 alarm->enabled = rtc->aie_timer.enabled; in rtc_read_alarm() 468 if (rtc->aie_timer.enabled) in rtc_set_alarm() 473 if (alarm->enabled) in rtc_set_alarm() 503 /* Alarm has to be enabled & in the future for us to enqueue it */ in rtc_initialize_alarm() 504 if (alarm->enabled && (rtc_tm_to_ktime(now) < in rtc_initialize_alarm() 506 rtc->aie_timer.enabled = 1; in rtc_initialize_alarm() 515 int rtc_alarm_irq_enable(struct rtc_device *rtc, unsigned int enabled) in rtc_alarm_irq_enable() argument [all …]
|