| /linux/arch/powerpc/sysdev/ |
| H A D | ipic.c | 37 .force = IPIC_SIFCR_H, 44 .force = IPIC_SIFCR_H, 51 .force = IPIC_SIFCR_H, 58 .force = IPIC_SIFCR_H, 65 .force = IPIC_SIFCR_H, 72 .force = IPIC_SIFCR_H, 79 .force = IPIC_SIFCR_H, 86 .force = IPIC_SIFCR_H, 93 .force = IPIC_SIFCR_H, 100 .force = IPIC_SIFCR_H, [all …]
|
| /linux/scripts/ |
| H A D | git-resolve.sh | 31 local force=0 33 force=1 181 if [ "$1" = "--force" ]; then 182 force="--force" 192 if [ -z "$force" ]; then 200 git_resolve_commit $force "$@"
|
| /linux/include/trace/events/ |
| H A D | memcg.h | 80 bool force, bool needs_flush), 82 TP_ARGS(memcg, stats_updates, force, needs_flush), 87 __field(bool, force) 94 __entry->force = force; 100 __entry->force, __entry->needs_flush)
|
| H A D | swiotlb.h | 19 __field(bool, force) 27 __entry->force = is_swiotlb_force_bounce(dev); 35 __entry->force ? "FORCE" : "NORMAL")
|
| /linux/drivers/gpu/drm/tests/ |
| H A D | drm_cmdline_parser_test.c | 30 KUNIT_EXPECT_EQ(test, mode.force, DRM_FORCE_ON); in drm_test_cmdline_force_e_only() 48 KUNIT_EXPECT_EQ(test, mode.force, DRM_FORCE_ON); in drm_test_cmdline_force_D_only_not_digital() 70 KUNIT_EXPECT_EQ(test, mode.force, DRM_FORCE_ON_DIGITAL); in drm_test_cmdline_force_D_only_hdmi() 92 KUNIT_EXPECT_EQ(test, mode.force, DRM_FORCE_ON_DIGITAL); in drm_test_cmdline_force_D_only_dvi() 110 KUNIT_EXPECT_EQ(test, mode.force, DRM_FORCE_OFF); in drm_test_cmdline_force_d_only() 132 KUNIT_EXPECT_EQ(test, mode.force, DRM_FORCE_UNSPECIFIED); in drm_test_cmdline_res() 154 KUNIT_EXPECT_EQ(test, mode.force, DRM_FORCE_UNSPECIFIED); in drm_test_cmdline_res_vesa() 176 KUNIT_EXPECT_EQ(test, mode.force, DRM_FORCE_UNSPECIFIED); in drm_test_cmdline_res_vesa_rblank() 198 KUNIT_EXPECT_EQ(test, mode.force, DRM_FORCE_UNSPECIFIED); in drm_test_cmdline_res_rblank() 221 KUNIT_EXPECT_EQ(test, mode.force, DRM_FORCE_UNSPECIFIED); in drm_test_cmdline_res_bpp() [all …]
|
| /linux/tools/perf/ |
| H A D | builtin-buildid-list.c | 87 static int perf_session__list_build_ids(bool force, bool with_hits) in perf_session__list_build_ids() argument 93 .force = force, in perf_session__list_build_ids() 149 bool force = false; in cmd_buildid_list() local 153 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"), in cmd_buildid_list() 175 return perf_session__list_build_ids(force, with_hits); in cmd_buildid_list()
|
| H A D | builtin-evlist.c | 36 .force = details->force, in __cmd_evlist() 82 OPT_BOOLEAN('f', "force", &details.force, "don't complain, do it"), in cmd_evlist()
|
| /linux/drivers/gpu/drm/nouveau/nvkm/subdev/bus/ |
| H A D | hwsq.h | 14 bool force; member 26 .force = 0, in hwsq_stride() 39 .force = 0, in hwsq_reg2() 52 .force = 0, in hwsq_reg() 113 reg->force = true; in hwsq_nuke() 120 if (temp != ((temp & ~mask) | data) || reg->force) in hwsq_mask()
|
| /linux/arch/x86/platform/iris/ |
| H A D | iris.c | 31 static bool force; variable 33 module_param(force, bool, 0); 34 MODULE_PARM_DESC(force, "Set to one to force poweroff handler installation."); 93 if (force != 1) { in iris_init()
|
| /linux/arch/x86/platform/geode/ |
| H A D | alix.c | 36 static bool force = 0; variable 37 module_param(force, bool, 0444); 39 MODULE_PARM_DESC(force, "Force detection as ALIX.2/ALIX.3 platform"); 63 if (force) { in alix_present()
|
| /linux/drivers/platform/x86/ |
| H A D | meegopad_anx7428.c | 56 static bool force; variable 57 module_param(force, bool, 0444); 58 MODULE_PARM_DESC(force, "Force the driver to probe on unknown boards"); 88 if (!dmi_check_system(meegopad_anx7428_ids) && !force) { in anx7428_probe()
|
| H A D | nvidia-wmi-ec-backlight.c | 15 static bool force; variable 16 module_param(force, bool, 0444); 17 MODULE_PARM_DESC(force, "Force loading (disable acpi_backlight=xxx checks"); 98 if (!force && acpi_video_get_backlight_type() != acpi_backlight_nvidia_wmi_ec) in nvidia_wmi_ec_backlight_probe()
|
| H A D | samsung-q10.c | 20 static bool force; variable 21 module_param(force, bool, 0); 22 MODULE_PARM_DESC(force, 131 if (!force && !dmi_check_system(samsungq10_dmi_table)) in samsungq10_init()
|
| /linux/drivers/cpuidle/ |
| H A D | cpuidle-haltpoll.c | 21 static bool force __read_mostly; 22 module_param(force, bool, 0444); 23 MODULE_PARM_DESC(force, "Load unconditionally"); 98 return kvm_para_has_hint(KVM_HINTS_REALTIME) || force; in haltpoll_want()
|
| /linux/tools/net/ynl/ |
| H A D | ynl-regen.sh | 6 force= 11 -f ) force=yes; shift ;; 27 if [ $f -nt ${params[0]} -a -z "$force" ]; then
|
| /linux/drivers/gpu/drm/ |
| H A D | drm_probe_helper.c | 344 bool force) in detect_connector_status() argument 349 return funcs->detect_ctx(connector, ctx, force); in detect_connector_status() 351 return connector->funcs->detect(connector, force); in detect_connector_status() 357 drm_helper_probe_detect_ctx(struct drm_connector *connector, bool force) in drm_helper_probe_detect_ctx() argument 367 ret = detect_connector_status(connector, &ctx, force); in drm_helper_probe_detect_ctx() 399 bool force) in drm_helper_probe_detect() argument 405 return drm_helper_probe_detect_ctx(connector, force); in drm_helper_probe_detect() 411 ret = detect_connector_status(connector, ctx, force); in drm_helper_probe_detect() 589 if (connector->force) { in drm_helper_probe_single_connector_modes() 590 if (connector->force == DRM_FORCE_ON || in drm_helper_probe_single_connector_modes() [all …]
|
| H A D | drm_sysfs.c | 201 old_force = connector->force; in status_store() 204 connector->force = 0; in status_store() 206 connector->force = DRM_FORCE_ON; in status_store() 208 connector->force = DRM_FORCE_ON_DIGITAL; in status_store() 210 connector->force = DRM_FORCE_OFF; in status_store() 214 if (old_force != connector->force || !connector->force) { in status_store() 217 old_force, connector->force); in status_store()
|
| /linux/arch/x86/crypto/ |
| H A D | twofish_glue_3way.c | 141 static int force; variable 142 module_param(force, int, 0); 143 MODULE_PARM_DESC(force, "Force module load, ignore CPU blacklist"); 147 if (!force && is_blacklisted_cpu()) { in twofish_3way_init()
|
| H A D | blowfish_glue.c | 155 static int force; variable 156 module_param(force, int, 0); 157 MODULE_PARM_DESC(force, "Force module load, ignore CPU blacklist"); 163 if (!force && is_blacklisted_cpu()) { in blowfish_init()
|
| /linux/drivers/platform/x86/lenovo/ |
| H A D | ymc.c | 23 static bool force; variable 24 module_param(force, bool, 0444); 25 MODULE_PARM_DESC(force, "Force loading on boards without a convertible DMI chassis-type"); 105 if (force) in lenovo_ymc_probe()
|
| /linux/Documentation/networking/device_drivers/ethernet/ti/ |
| H A D | tlan.rst | 81 3. You can set duplex=1 to force half duplex, and duplex=2 to 82 force full duplex. 84 4. You can set speed=10 to force 10Mbs operation, and speed=100 85 to force 100Mbs operation. (I'm not sure what will happen 91 To force a 10Mbps Half-Duplex link do "insmod tlan.o speed=10 115 ether=0,0,0x12,0,eth0 will force link to 100Mbps Half-Duplex. 118 use the above options on a per adapter basis. To force a 100Mbit/HD
|
| /linux/drivers/hid/ |
| H A D | Kconfig | 99 Support for touchpads with force sensors and haptic actuators instead of a 132 bool "ACRUX force feedback support" 136 Say Y here if you want to enable force feedback support for ACRUX 217 tristate "Betop Production Inc. force feedback support" 221 Say Y here if you want to enable force feedback support for devices by 236 force feedback effects and LEDs on the device. 340 bool "DragonRise Inc. force feedback" 344 Say Y here if you want to enable force feedback support for DragonRise Inc. 348 tristate "EMS Production Inc. force feedback support" 351 Say Y here if you want to enable force feedback support for devices by [all …]
|
| /linux/drivers/usb/gadget/udc/ |
| H A D | Kconfig | 43 dynamically linked module called "at91_udc" and force all 55 dynamically linked module called "lpc32xx_udc" and force all 102 dynamically linked module called "fsl_usb2_udc" and force 123 dynamically linked module called "omap_udc" and force all 139 dynamically linked module called "pxa25x_udc" and force all 161 dynamically linked module called "r8a66597_udc" and force all 173 dynamically linked module called "renesas_usbhs" and force all 197 dynamically linked module called "renesas_usb3" and force all 208 dynamically linked module called "renesas_usbf" and force all 222 dynamically linked module called "pxa27x_udc" and force all [all …]
|
| /linux/drivers/acpi/ |
| H A D | processor_throttling.c | 44 bool force; member 52 int state, bool force, bool direct); 942 int state, bool force) in acpi_processor_set_throttling_fadt() argument 957 if (!force && (state == pr->throttling.state)) in acpi_processor_set_throttling_fadt() 1015 int state, bool force) in acpi_processor_set_throttling_ptc() argument 1029 if (!force && (state == pr->throttling.state)) in acpi_processor_set_throttling_ptc() 1051 arg->target_state, arg->force); in acpi_processor_throttling_fn() 1055 int state, bool force, bool direct) in __acpi_processor_set_throttling() argument 1103 arg.force = force; in __acpi_processor_set_throttling() 1136 arg.force = force; in __acpi_processor_set_throttling() [all …]
|
| /linux/drivers/net/wireless/mediatek/mt76/ |
| H A D | mt792x_dma.c | 174 mt792x_dma_reset(struct mt792x_dev *dev, bool force) in mt792x_dma_reset() argument 178 err = mt792x_dma_disable(dev, force); in mt792x_dma_reset() 197 int mt792x_wpdma_reset(struct mt792x_dev *dev, bool force) in mt792x_wpdma_reset() argument 211 if (force) { in mt792x_wpdma_reset() 216 err = mt792x_dma_reset(dev, force); in mt792x_wpdma_reset() 253 int mt792x_dma_disable(struct mt792x_dev *dev, bool force) in mt792x_dma_disable() argument 273 if (force) { in mt792x_dma_disable()
|