Home
last modified time | relevance | path

Searched full:enabled (Results 1 – 25 of 8317) sorted by relevance

12345678910>>...333

/kernel/linux/linux-5.10/Documentation/admin-guide/
Dkernel-parameters.rst81 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-6.6/Documentation/admin-guide/
Dkernel-parameters.rst93 were enabled and if respective hardware is present. This list should be kept
98 ACPI ACPI support is enabled.
99 AGP AGP (Accelerated Graphics Port) is enabled.
100 ALSA ALSA sound support is enabled.
101 APIC APIC support is enabled.
102 APM Advanced Power Management support is enabled.
103 APPARMOR AppArmor support is enabled.
104 ARM ARM architecture is enabled.
105 ARM64 ARM64 architecture is enabled.
106 AX25 Appropriate AX.25 support is enabled.
[all …]
/kernel/linux/linux-6.6/arch/powerpc/kernel/
Dsecure_boot.c25 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/arch/powerpc/kernel/
Dsecure_boot.c25 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-6.6/tools/testing/selftests/net/forwarding/
Dethtool_mm.sh51 # NXP ENETC does not, and requires tx-enabled on in order to respond to
53 ethtool --set-mm $rx tx-enabled on
54 ethtool --set-mm $tx verify-enabled on tx-enabled on
69 ethtool --set-mm $tx verify-enabled off tx-enabled off
70 ethtool --set-mm $rx tx-enabled off
92 ethtool --set-mm $tx verify-enabled off tx-enabled on
104 ethtool --set-mm $tx verify-enabled off tx-enabled off
126 ethtool --set-mm $rx pmac-enabled off
127 ethtool --set-mm $tx verify-enabled on tx-enabled on
142 ethtool --set-mm $tx verify-enabled off tx-enabled off
[all …]
/kernel/linux/linux-5.10/drivers/pinctrl/aspeed/
Dpinmux-aspeed.c24 * 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-6.6/drivers/pinctrl/aspeed/
Dpinmux-aspeed.c24 * aspeed_sig_desc_eval() - Query the enabled or disabled state of a signal
28 * @enabled: True to query the enabled state, false to query disabled state
32 * selected by @enabled, 0 if not, and less than zero if an unrecoverable
37 * a value that is neither the enabled nor disabled state recorded in the
39 * is enabled). Thus we must explicitly test for either condition as required.
42 bool enabled, struct regmap *map) in aspeed_sig_desc_eval() argument
55 aspeed_sig_desc_print_val(desc, enabled, raw); in aspeed_sig_desc_eval()
56 want = enabled ? desc->enable : desc->disable; in aspeed_sig_desc_eval()
62 * aspeed_sig_expr_eval - Query the enabled or disabled state for a
67 * @enabled: True to query the enabled state, false to query disabled state
[all …]
/kernel/linux/linux-6.6/drivers/net/wireless/broadcom/b43/
Drfkill.c15 /* 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-5.10/drivers/net/wireless/broadcom/b43/
Drfkill.c15 /* 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-6.6/drivers/usb/typec/mux/
Dgpio-sbu-mux.c21 struct mutex lock; /* protect enabled and swapped */
22 bool enabled; member
30 bool enabled; in gpio_sbu_switch_set() local
35 enabled = sbu_mux->enabled; in gpio_sbu_switch_set()
40 enabled = false; in gpio_sbu_switch_set()
50 if (enabled != sbu_mux->enabled) in gpio_sbu_switch_set()
51 gpiod_set_value(sbu_mux->enable_gpio, enabled); in gpio_sbu_switch_set()
56 sbu_mux->enabled = enabled; in gpio_sbu_switch_set()
74 sbu_mux->enabled = false; in gpio_sbu_mux_set()
79 sbu_mux->enabled = true; in gpio_sbu_mux_set()
[all …]
/kernel/linux/linux-5.10/drivers/regulator/
Duserspace-consumer.c26 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-6.6/drivers/net/wireless/broadcom/b43legacy/
Drfkill.c16 /* 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/net/wireless/broadcom/b43legacy/
Drfkill.c16 /* 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-6.6/include/trace/events/
Drtc.h82 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-5.10/include/trace/events/
Drtc.h82 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-6.6/drivers/regulator/
Duserspace-consumer.c27 bool enabled; member
47 if (data->enabled) in state_show()
48 return sprintf(buf, "enabled\n"); in state_show()
57 bool enabled; in state_store() local
64 if (sysfs_streq(buf, "enabled\n") || sysfs_streq(buf, "1")) in state_store()
65 enabled = true; in state_store()
67 enabled = false; in state_store()
74 if (enabled != data->enabled) { in state_store()
75 if (enabled) in state_store()
83 data->enabled = enabled; in state_store()
[all …]
/kernel/linux/linux-6.6/drivers/base/power/
Dsysfs.c36 * + "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/drivers/base/power/
Dsysfs.c36 * + "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-6.6/Documentation/networking/
Dipvs-sysctl.rst22 enabled and the variable is automatically set to 2, otherwise
27 - not 0 - enabled
54 - not 0 - enabled
59 This should be enabled if connections handled by IPVS are to be
67 Only available when IPVS is compiled with CONFIG_IP_VS_NFCT enabled.
71 - not 0 - enabled
73 If it is enabled, forward packets to the original destination
93 Only available when IPVS is compiled with CONFIG_IP_VS_DEBUG enabled.
114 is enabled and the variable is automatically set to 2,
116 1), and 3 means that the strategy is always enabled.
[all …]
Dnf_conntrack-sysctl.rst12 - not 0 - enabled
26 - not 0 - enabled (default)
29 in INVALID state. If this is enabled, such packets will not be
37 - 1 - enabled
40 If this option is enabled, the connection tracking code will
105 - not 0 - enabled
112 - 1 - enabled
118 - not 0 - enabled (default)
162 - not 0 - enabled
215 - not 0 - enabled
[all …]
/kernel/linux/linux-5.10/Documentation/networking/
Dipvs-sysctl.rst22 enabled and the variable is automatically set to 2, otherwise
27 - not 0 - enabled
54 - not 0 - enabled
59 This should be enabled if connections handled by IPVS are to be
67 Only available when IPVS is compiled with CONFIG_IP_VS_NFCT enabled.
71 - not 0 - enabled
73 If it is enabled, forward packets to the original destination
93 Only available when IPVS is compiled with CONFIG_IP_VS_DEBUG enabled.
114 is enabled and the variable is automatically set to 2,
116 1), and 3 means that the strategy is always enabled.
[all …]
/kernel/linux/linux-5.10/drivers/net/
Dnetconsole.c80 * @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/
Drcar_cmm.c28 * @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-6.6/drivers/gpu/drm/renesas/rcar-du/
Drcar_cmm.c28 * @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-6.6/Documentation/devicetree/bindings/pinctrl/
Dmediatek,mt8365-pinctrl.yaml84 101: (R1, R0) = (0, 1) which means R1 disabled and R0 enabled.
85 102: (R1, R0) = (1, 0) which means R1 enabled and R0 disabled.
86 103: (R1, R0) = (1, 1) which means R1 enabled and R0 enabled.
98 101: (R1, R0) = (0, 1) which means R1 disabled and R0 enabled.
99 102: (R1, R0) = (1, 0) which means R1 enabled and R0 disabled.
100 103: (R1, R0) = (1, 1) which means R1 enabled and R0 enabled.
156 1: (R1, R0) = (0, 1) which means R1 disabled and R0 enabled.
157 2: (R1, R0) = (1, 0) which means R1 enabled and R0 disabled.
158 3: (R1, R0) = (1, 1) which means R1 enabled and R0 enabled.
170 1: (R1, R0) = (0, 1) which means R1 disabled and R0 enabled.
[all …]

12345678910>>...333