| /linux-4.1.27/Documentation/devicetree/bindings/iio/adc/ | 
| D | at91_adc.txt | 32     NOTE: when adc touchscreen is enabled, the adc hardware trigger will be 33           disabled. Since touchscreen will occupy the trigger register. 37 Optional trigger Nodes: 39     * trigger-name: Name of the trigger exposed to the user 40     * trigger-value: Value to put in the Trigger register 41       to activate this trigger 43     * trigger-external: Is the trigger an external trigger? 62 	trigger@0 { 64 		trigger-name = "external-rising"; 65 		trigger-value = <0x1>; [all …] 
 | 
| /linux-4.1.27/drivers/vfio/pci/ | 
| D | vfio_pci_intrs.c | 36 		eventfd_signal(vdev->ctx[0].trigger, 1);  in vfio_send_intx_eventfd() 178 	struct eventfd_ctx *trigger;  in vfio_intx_set_signal()  local 182 	if (vdev->ctx[0].trigger) {  in vfio_intx_set_signal() 185 		eventfd_ctx_put(vdev->ctx[0].trigger);  in vfio_intx_set_signal() 186 		vdev->ctx[0].trigger = NULL;  in vfio_intx_set_signal() 197 	trigger = eventfd_ctx_fdget(fd);  in vfio_intx_set_signal() 198 	if (IS_ERR(trigger)) {  in vfio_intx_set_signal() 200 		return PTR_ERR(trigger);  in vfio_intx_set_signal() 203 	vdev->ctx[0].trigger = trigger;  in vfio_intx_set_signal() 211 		vdev->ctx[0].trigger = NULL;  in vfio_intx_set_signal() [all …] 
 | 
| /linux-4.1.27/Documentation/leds/ | 
| D | ledtrig-transient.txt | 4 The leds timer trigger does not currently have an interface to activate 9 should stay in off state. The on and off cycle repeats until the trigger 14 Without one shot timer interface, user space can still use timer trigger to 25 Transient trigger addresses the need for one shot timer activation. The 26 transient trigger can be enabled and disabled just like the other leds 30 triggers it supports and a default trigger. During registration, activation 31 routine for the default trigger gets called. During registration of an led 35 trigger will be called, and LED state is changed to LED_OFF. 39 suspend and resume actions and the currently enabled trigger. LED state 47 echo 0 > brightness, it will result in deactivating the current trigger. [all …] 
 | 
| D | ledtrig-oneshot.txt | 4 This is a LED trigger useful for signaling the user of an event where there are 6 trigger, the application needs only to signal the trigger when an event has 7 happened, than the trigger turns the LED on and than keeps it off for a 10 This trigger is meant to be usable both for sporadic and dense events.  In the 11 first case, the trigger produces a clear single controlled blink for each 19 The trigger can be activated from user space on led class devices as shown 22   echo oneshot > trigger 45   echo oneshot > trigger # set trigger for this led
  | 
| D | leds-class.txt | 14 The class also introduces the optional concept of an LED trigger. A trigger 16 complex. A simple trigger isn't configurable and is designed to slot into 22 parameters and work on a per LED basis. The timer trigger is an example. 23 The timer trigger will periodically change the LED brightness between 27 trigger. However, if you set the brightness value to LED_OFF it will 28 also disable the timer trigger. 31 is chosen (via /sys/class/leds/<device>/trigger). Trigger specific 32 parameters can appear in /sys/class/leds/<device> once a given trigger is 84 The LED Trigger core cannot be a module as the simple trigger functions 86 compared to the benefits the simple trigger functionality brings. The [all …] 
 | 
| D | leds-blinkm.txt | 22 brightness  device  max_brightness  power  subsystem  trigger  uevent 25 brightness  device  max_brightness  power  subsystem  trigger  uevent 28 brightness  device  max_brightness  power  subsystem  trigger  uevent 44 $ echo heartbeat > blinkm-6-9-green/trigger
  | 
| D | 00-INDEX | 20 	- One-shot LED trigger for both sporadic and dense events.
  | 
| /linux-4.1.27/include/linux/ | 
| D | leds.h | 94 	struct led_trigger	*trigger;  member 226 extern int led_trigger_register(struct led_trigger *trigger); 227 extern void led_trigger_unregister(struct led_trigger *trigger); 230 				struct led_trigger **trigger); 231 extern void led_trigger_unregister_simple(struct led_trigger *trigger); 232 extern void led_trigger_event(struct led_trigger *trigger, 234 extern void led_trigger_blink(struct led_trigger *trigger, 237 extern void led_trigger_blink_oneshot(struct led_trigger *trigger, 266 					struct led_trigger **trigger) {}  in led_trigger_register_simple()  argument 267 static inline void led_trigger_unregister_simple(struct led_trigger *trigger) {}  in led_trigger_unregister_simple()  argument [all …] 
 | 
| D | gameport.h | 30 	void (*trigger)(struct gameport *);  member 171 	if (gameport->trigger)  in gameport_trigger() 172 		gameport->trigger(gameport);  in gameport_trigger()
  | 
| /linux-4.1.27/drivers/vfio/platform/ | 
| D | vfio_platform_irq.c | 166 		eventfd_signal(irq_ctx->trigger, 1);  in vfio_automasked_irq_handler() 175 	eventfd_signal(irq_ctx->trigger, 1);  in vfio_irq_handler() 184 	struct eventfd_ctx *trigger;  in vfio_set_trigger()  local 187 	if (irq->trigger) {  in vfio_set_trigger() 190 		eventfd_ctx_put(irq->trigger);  in vfio_set_trigger() 191 		irq->trigger = NULL;  in vfio_set_trigger() 202 	trigger = eventfd_ctx_fdget(fd);  in vfio_set_trigger() 203 	if (IS_ERR(trigger)) {  in vfio_set_trigger() 205 		return PTR_ERR(trigger);  in vfio_set_trigger() 208 	irq->trigger = trigger;  in vfio_set_trigger() [all …] 
 | 
| D | vfio_platform_private.h | 35 	struct eventfd_ctx	*trigger;  member
  | 
| /linux-4.1.27/drivers/acpi/ | 
| D | gsi.c | 17 static unsigned int acpi_gsi_get_irq_type(int trigger, int polarity)  in acpi_gsi_get_irq_type()  argument 21 		return trigger == ACPI_EDGE_SENSITIVE ?  in acpi_gsi_get_irq_type() 25 		return trigger == ACPI_EDGE_SENSITIVE ?  in acpi_gsi_get_irq_type() 29 		if (trigger == ACPI_EDGE_SENSITIVE)  in acpi_gsi_get_irq_type() 72 int acpi_register_gsi(struct device *dev, u32 gsi, int trigger,  in acpi_register_gsi()  argument 76 	unsigned int irq_type = acpi_gsi_get_irq_type(trigger, polarity);  in acpi_register_gsi()
  | 
| D | tables.c | 132 			u16 polarity, trigger;  in acpi_table_print_madt_entry()  local 137 			trigger = (p->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2;  in acpi_table_print_madt_entry() 142 				mps_inti_flags_trigger[trigger],  in acpi_table_print_madt_entry()
  | 
| /linux-4.1.27/arch/ia64/include/asm/ | 
| D | iosapic.h | 68 extern struct irq_chip *ia64_native_iosapic_get_irq_chip(unsigned long trigger); 94 				  unsigned long trigger); 98 				      unsigned long trigger); 104 					   unsigned long trigger); 113 #define iosapic_register_intr(gsi,polarity,trigger)		(gsi)  argument 115 #define iosapic_override_isa_irq(isa_irq,gsi,polarity,trigger)	do { } while (0)  argument 117 	polarity,trigger)					(gsi)  argument
  | 
| D | paravirt.h | 177 	struct irq_chip *(*__get_irq_chip)(unsigned long trigger); 193 iosapic_get_irq_chip(unsigned long trigger)  in iosapic_get_irq_chip()  argument 195 	return pv_iosapic_ops.__get_irq_chip(trigger);  in iosapic_get_irq_chip()
  | 
| /linux-4.1.27/arch/ia64/kernel/ | 
| D | iosapic.c | 147 	unsigned char	trigger	: 1;	/* trigger mode (see iosapic.h) */  member 219 	unsigned long pol, trigger, dmode;  in set_rte()  local 234 	trigger = iosapic_intr_info[irq].trigger;  in set_rte() 244 		 (trigger << IOSAPIC_TRIGGER_SHIFT) |  in set_rte() 485 static int iosapic_find_sharable_irq(unsigned long trigger, unsigned long pol)  in iosapic_find_sharable_irq()  argument 494 	if (trigger == IOSAPIC_EDGE)  in iosapic_find_sharable_irq() 499 		if (info->trigger == trigger && info->polarity == pol &&  in iosapic_find_sharable_irq() 545 ia64_native_iosapic_get_irq_chip(unsigned long trigger)  in ia64_native_iosapic_get_irq_chip()  argument 547 	if (trigger == IOSAPIC_EDGE)  in ia64_native_iosapic_get_irq_chip() 555 	       unsigned long polarity, unsigned long trigger)  in register_intr()  argument [all …] 
 | 
| /linux-4.1.27/arch/powerpc/platforms/85xx/ | 
| D | sgy_cts1000.c | 44 	int trigger, gpio;  in gpio_halt_cb()  local 54 	trigger = (flags == OF_GPIO_ACTIVE_LOW);  in gpio_halt_cb() 59 	gpio_set_value(gpio, trigger);  in gpio_halt_cb() 77 	int trigger;  in gpio_halt_probe()  local 105 	trigger = (flags == OF_GPIO_ACTIVE_LOW);  in gpio_halt_probe() 107 	gpio_direction_output(gpio, !trigger);  in gpio_halt_probe() 126 	       " irq).\n", gpio, trigger, irq);  in gpio_halt_probe()
  | 
| /linux-4.1.27/Documentation/devicetree/bindings/power/reset/ | 
| D | ltc2952-poweroff.txt | 3 This chip is used to externally trigger a system shut down. Once the trigger has 16 - trigger-gpios:	phandle + gpio-specifier for the GPIO connected to the 17 			chip's trigger line. If this property is not set, the 18 			trigger function is ignored and the chip is kept alive 26 	trigger-gpios = <&gpio0 1 GPIO_ACTIVE_LOW>;
  | 
| /linux-4.1.27/arch/x86/kernel/acpi/ | 
| D | boot.c | 324 static void __init mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger,  in mp_override_legacy_irq()  argument 344 	if ((bus_irq == 0) && (trigger == 3))  in mp_override_legacy_irq() 345 		trigger = 1;  in mp_override_legacy_irq() 349 	mp_irq.irqflag = (trigger << 2) | polarity;  in mp_override_legacy_irq() 367 static int mp_config_acpi_gsi(struct device *dev, u32 gsi, int trigger,  in mp_config_acpi_gsi()  argument 390 	mp_irq.irqflag = (trigger == ACPI_EDGE_SENSITIVE ? 4 : 0x0c) |  in mp_config_acpi_gsi() 403 static int mp_register_gsi(struct device *dev, u32 gsi, int trigger,  in mp_register_gsi()  argument 411 	trigger = trigger == ACPI_EDGE_SENSITIVE ? 0 : 1;  in mp_register_gsi() 414 	if (mp_set_gsi_attr(gsi, trigger, polarity, node)) {  in mp_register_gsi() 425 		mp_config_acpi_gsi(dev, gsi, trigger, polarity);  in mp_register_gsi() [all …] 
 | 
| /linux-4.1.27/drivers/staging/iio/Documentation/ | 
| D | trigger.txt | 1 IIO trigger drivers. 8 struct iio_trig *trig = iio_trigger_alloc("<trigger format string>", ...); 10 allocates a trigger structure.  The key elements to then fill in within 18 	Function that enables / disables the underlying source of the trigger. 28 to register the trigger with the core, making it available to trigger
  | 
| D | overview.txt | 42 external signal (trigger).  These triggers might be a data ready 44 processor periodic interrupt.  A single trigger may initialize data 53 trigger.txt - elements of a typical trigger driver.
  | 
| /linux-4.1.27/drivers/leds/ | 
| D | led-triggers.c | 90 	if (!led_cdev->trigger)  in led_trigger_show() 96 		if (led_cdev->trigger && !strcmp(led_cdev->trigger->name,  in led_trigger_show() 122 	if (led_cdev->trigger) {  in led_trigger_set() 123 		write_lock_irqsave(&led_cdev->trigger->leddev_list_lock, flags);  in led_trigger_set() 125 		write_unlock_irqrestore(&led_cdev->trigger->leddev_list_lock,  in led_trigger_set() 129 		if (led_cdev->trigger->deactivate)  in led_trigger_set() 130 			led_cdev->trigger->deactivate(led_cdev);  in led_trigger_set() 131 		led_cdev->trigger = NULL;  in led_trigger_set() 138 		led_cdev->trigger = trig;  in led_trigger_set() 217 		if (!led_cdev->trigger && led_cdev->default_trigger &&  in led_trigger_register() [all …] 
 | 
| D | leds-versatile.c | 28 	const char *trigger;  member 87 		led->cdev.default_trigger = versatile_leds[i].trigger;  in versatile_leds_probe()
  | 
| D | leds.h | 56 			struct led_trigger *trigger);
  | 
| /linux-4.1.27/Documentation/trace/ | 
| D | events.txt | 294 Trace events can be made to conditionally invoke trigger 'commands' 298 with attached triggers is invoked, the set of trigger commands 299 associated with that event is invoked.  Any given trigger can 303 If no filter is associated with the trigger, it always passes. 306 trigger expressions to the 'trigger' file for the given event. 330 Triggers are added by echoing the command to the 'trigger' file: 332   # echo 'command[:count] [if filter]' > trigger 335 to the 'trigger' file: 337   # echo '!command[:count] [if filter]' > trigger 346 For ease of use, writing to the trigger file using '>' currently just [all …] 
 | 
| /linux-4.1.27/arch/arm/boot/dts/ | 
| D | bcm47081-buffalo-wzr-600dhp2.dts | 53 			linux,default-trigger = "default-on"; 59 			linux,default-trigger = "default-off"; 65 			linux,default-trigger = "default-on"; 71 			linux,default-trigger = "default-off"; 77 			linux,default-trigger = "default-on"; 83 			linux,default-trigger = "default-off"; 89 			linux,default-trigger = "default-off";
  | 
| D | bcm4708-buffalo-wzr-1750dhp.dts | 53 			linux,default-trigger = "default-off"; 59 			linux,default-trigger = "default-on"; 65 			linux,default-trigger = "default-on"; 71 			linux,default-trigger = "default-off"; 77 			linux,default-trigger = "default-on"; 83 			linux,default-trigger = "default-off"; 89 			linux,default-trigger = "default-off";
  | 
| D | bcm47081-asus-rt-n18u.dts | 32 			linux,default-trigger = "default-on"; 38 			linux,default-trigger = "default-off"; 44 			linux,default-trigger = "default-on"; 50 			linux,default-trigger = "default-on"; 56 			linux,default-trigger = "default-off";
  | 
| D | bcm4708-netgear-r6300-v2.dts | 32 			linux,default-trigger = "default-on"; 38 			linux,default-trigger = "default-off"; 44 			linux,default-trigger = "default-on"; 50 			linux,default-trigger = "default-off"; 56 			linux,default-trigger = "default-off";
  | 
| D | bcm4708-netgear-r6250.dts | 42 			linux,default-trigger = "default-on"; 48 			linux,default-trigger = "default-on"; 54 			linux,default-trigger = "default-off"; 60 			linux,default-trigger = "default-off"; 66 			linux,default-trigger = "default-off";
  | 
| D | bcm4709-netgear-r8000.dts | 32 			linux,default-trigger = "default-on"; 38 			linux,default-trigger = "default-off"; 44 			linux,default-trigger = "default-off"; 50 			linux,default-trigger = "default-off";
  | 
| D | aks-cdu.dts | 100 			linux,default-trigger = "none"; 105 			linux,default-trigger = "none"; 111 			linux,default-trigger = "none"; 116 			linux,default-trigger = "none";
  | 
| D | kizbox.dts | 108 			linux,default-trigger = "none"; 114 			linux,default-trigger = "none"; 120 			linux,default-trigger = "none"; 127 			linux,default-trigger = "none";
  | 
| D | vexpress-v2m-rs1.dtsi | 322 				linux,default-trigger = "heartbeat"; 328 				linux,default-trigger = "mmc0"; 334 				linux,default-trigger = "cpu0"; 340 				linux,default-trigger = "cpu1"; 346 				linux,default-trigger = "cpu2"; 352 				linux,default-trigger = "cpu3"; 358 				linux,default-trigger = "cpu4"; 364 				linux,default-trigger = "cpu5";
  | 
| D | vexpress-v2m.dtsi | 321 				linux,default-trigger = "heartbeat"; 327 				linux,default-trigger = "mmc0"; 333 				linux,default-trigger = "cpu0"; 339 				linux,default-trigger = "cpu1"; 345 				linux,default-trigger = "cpu2"; 351 				linux,default-trigger = "cpu3"; 357 				linux,default-trigger = "cpu4"; 363 				linux,default-trigger = "cpu5";
  | 
| D | imx28-sps1.dts | 152 			linux,default-trigger = "heartbeat"; 159 			linux,default-trigger = "heartbeat"; 166 			default-trigger = "heartbeat";
  | 
| D | at91sam9rl.dtsi | 268 				trigger@0 { 270 					trigger-name = "timer-counter-0"; 271 					trigger-value = <0x1>; 273 				trigger@1 { 275 					trigger-name = "timer-counter-1"; 276 					trigger-value = <0x3>; 279 				trigger@2 { 281 					trigger-name = "timer-counter-2"; 282 					trigger-value = <0x5>; 285 				trigger@3 { [all …] 
 | 
| D | omap3-devkit8000.dts | 27 			linux,default-trigger = "heartbeat"; 34 			linux,default-trigger = "none"; 41 			linux,default-trigger = "usr";
  | 
| D | at91sam9260.dtsi | 939 				trigger@0 { 941 					trigger-name = "timer-counter-0"; 942 					trigger-value = <0x1>; 944 				trigger@1 { 946 					trigger-name = "timer-counter-1"; 947 					trigger-value = <0x3>; 950 				trigger@2 { 952 					trigger-name = "timer-counter-2"; 953 					trigger-value = <0x5>; 956 				trigger@3 { [all …] 
 | 
| D | at91sam9n12ek.dts | 169 			linux,default-trigger = "mmc0"; 175 			linux,default-trigger = "nand-disk"; 181 			linux,default-trigger = "heartbeat";
  | 
| D | exynos4412-tiny4412.dts | 36 			linux,default-trigger = "heartbeat"; 55 			linux,default-trigger = "mmc0";
  | 
| D | omap3-overo-base.dtsi | 21 			linux,default-trigger = "mmc0"; 50 	/* Regulator to trigger the nPoweron signal of the Wifi module */ 60 	/* Regulator to trigger the nReset signal of the Wifi module */ 72 	/* Regulator to trigger the nReset signal of the Bluetooth module */
  | 
| D | at91sam9x5.dtsi | 1002 				trigger@0 { 1004 					trigger-name = "external-rising"; 1005 					trigger-value = <0x1>; 1006 					trigger-external; 1009 				trigger@1 { 1011 					trigger-name = "external-falling"; 1012 					trigger-value = <0x2>; 1013 					trigger-external; 1016 				trigger@2 { 1018 					trigger-name = "external-any"; [all …] 
 | 
| D | exynos4412-odroidx.dts | 31 			linux,default-trigger = "heartbeat"; 37 			linux,default-trigger = "mmc0";
  | 
| D | at91sam9261ek.dts | 172 			linux,default-trigger = "none"; 178 			linux,default-trigger = "nand-disk"; 184 			linux,default-trigger = "heartbeat";
  | 
| D | at91rm9200ek.dts | 127 			linux,default-trigger = "mmc0"; 133 			linux,default-trigger = "heartbeat";
  | 
| D | at91sam9g45.dtsi | 1037 				trigger@0 { 1039 					trigger-name = "external-rising"; 1040 					trigger-value = <0x1>; 1041 					trigger-external; 1043 				trigger@1 { 1045 					trigger-name = "external-falling"; 1046 					trigger-value = <0x2>; 1047 					trigger-external; 1050 				trigger@2 { 1052 					trigger-name = "external-any"; [all …] 
 | 
| D | omap3-igep0020.dts | 18 	/* Regulator to trigger the WIFI_PDN signal of the Wifi module */ 29 	/* Regulator to trigger the RESET_N_W signal of the Wifi module */
  | 
| D | omap3-igep0030.dts | 18 	/* Regulator to trigger the WIFI_PDN signal of the Wifi module */ 29 	/* Regulator to trigger the RESET_N_W signal of the Wifi module */
  | 
| D | integrator.dtsi | 18 			linux,default-trigger = "cpu0"; 106 				linux,default-trigger = "heartbeat";
  | 
| D | pm9g45.dts | 146 			linux,default-trigger = "nand-disk"; 152 			linux,default-trigger = "heartbeat";
  | 
| D | am335x-bone-common.dtsi | 30 			linux,default-trigger = "heartbeat"; 37 			linux,default-trigger = "mmc0"; 44 			linux,default-trigger = "cpu0"; 51 			linux,default-trigger = "mmc1";
  | 
| D | at91sam9m10g45ek.dts | 247 			linux,default-trigger = "heartbeat"; 258 			linux,default-trigger = "nand-disk"; 265 			linux,default-trigger = "mmc0";
  | 
| D | sama5d3.dtsi | 328 				trigger@0 { 330 					trigger-name = "external-rising"; 331 					trigger-value = <0x1>; 332 					trigger-external; 334 				trigger@1 { 336 					trigger-name = "external-falling"; 337 					trigger-value = <0x2>; 338 					trigger-external; 340 				trigger@2 { 342 					trigger-name = "external-any"; [all …] 
 | 
| D | sama5d4.dtsi | 1083 					/* external trigger is conflict with USBA_VBUS */ 1103 				trigger@0 { 1104 					trigger-name = "external-rising"; 1105 					trigger-value = <0x1>; 1106 					trigger-external; 1108 				trigger@1 { 1109 					trigger-name = "external-falling"; 1110 					trigger-value = <0x2>; 1111 					trigger-external; 1113 				trigger@2 { [all …] 
 | 
| D | imx27-phytec-phycore-rdk.dts | 259 		linux,default-trigger = "nand-disk"; 265 		linux,default-trigger = "heartbeat"; 271 		linux,default-trigger = "cpu0";
  | 
| D | bcm2835-rpi-b-plus.dts | 17 			linux,default-trigger = "default-on";
  | 
| D | at91sam9g20ek.dts | 21 			linux,default-trigger = "heartbeat";
  | 
| D | bcm2835-rpi.dtsi | 14 			linux,default-trigger = "heartbeat";
  | 
| D | kirkwood-ns2lite.dts | 29 			linux,default-trigger = "ide-disk";
  | 
| D | at91sam9263ek.dts | 198 			linux,default-trigger = "heartbeat"; 204 			linux,default-trigger = "nand-disk";
  | 
| D | omap3-overo-summit-common.dtsi | 24 			linux,default-trigger = "heartbeat";
  | 
| D | bcm4708-luxul-xwc-1000.dts | 45 			linux,default-trigger = "timer";
  | 
| D | at91sam9g20ek_2mmc.dts | 47 			linux,default-trigger = "heartbeat";
  | 
| D | omap3-overo-tobi-common.dtsi | 22 			linux,default-trigger = "heartbeat";
  | 
| D | s3c6410-mini6410.dts | 142 			linux,default-trigger = "heartbeat"; 148 			linux,default-trigger = "mmc0";
  | 
| D | stih416-b2020e.dts | 23 				linux,default-trigger	= "heartbeat";
  | 
| D | stihxxx-b2120.dtsi | 21 				linux,default-trigger = "heartbeat";
  | 
| D | omap3-overo-palo43-common.dtsi | 26 			linux,default-trigger = "heartbeat";
  | 
| D | omap3-overo-gallop43-common.dtsi | 26 			linux,default-trigger = "heartbeat";
  | 
| /linux-4.1.27/Documentation/devicetree/bindings/leds/ | 
| D | pca963x.txt | 17 - linux,default-trigger : (optional) 31 		linux,default-trigger = "none"; 36 		linux,default-trigger = "none"; 41 		linux,default-trigger = "none"; 46 		linux,default-trigger = "none";
  | 
| D | register-bit-led.txt | 24 - linux,default-trigger : (optional) 45 		linux,default-trigger = "heartbeat"; 53 		linux,default-trigger = "mmc0"; 61 		linux,default-trigger = "cpu0";
  | 
| D | leds-gpio.txt | 15 - linux,default-trigger :  (optional) 36 		linux,default-trigger = "ide-disk"; 63 		linux,default-trigger = "max8903-charger-charging";
  | 
| D | tca6507.txt | 18 - linux,default-trigger : (optional) 41 		linux,default-trigger = "default-on";
  | 
| D | common.txt | 22 - linux,default-trigger :  This parameter, if present, is a 23     string defining the trigger assigned to the LED.  Current triggers are: 45 	linux,default-trigger = "heartbeat";
  | 
| D | leds-pm8941-wled.txt | 10 - linux,default-trigger: Default trigger assigned to the LED
  | 
| D | leds-lp55xx.txt | 27 Alternatively, each child can have a specific channel name and trigger: 29 - linux,default-trigger (optional): see 34 'lp5521_pri:channel1' and 'lp5521_pri:channel2', with a heartbeat trigger 46 		linux,default-trigger = "heartbeat";
  | 
| D | leds-ns2.txt | 14 - linux,default-trigger: Trigger assigned to the LED.
  | 
| /linux-4.1.27/Documentation/ABI/testing/ | 
| D | sysfs-bus-iio-trigger-sysfs | 5 		This file is provided by the iio-trig-sysfs stand-alone trigger 7 		driven driver, associated with this trigger, to capture data 9 		automated testing or in situations, where other trigger methods 11 		X is the IIO index of the trigger.
  | 
| D | sysfs-class-led | 18 What:		/sys/class/leds/<led>/trigger 23 		Set the trigger for this LED. A trigger is a kernel based source 27 		/sys/class/leds/<led> once a given trigger is selected. 35 		gpio and backlight triggers. In case of the backlight trigger,
  | 
| D | sysfs-class-power | 30 		will drop to 0 A) and will trigger interrupt. 44 		will drop to 0 A) and will trigger interrupt. 57 		charge mode drops below this value, the charger will trigger 73 		will drop to 0 A) and will trigger interrupt.
  | 
| D | sysfs-bus-coresight-devices-etb10 | 22 		following the trigger event. The number of 32-bit words written 23 		into the Trace RAM following the trigger event is equal to the
  | 
| D | sysfs-tty | 146 		 Shows current RX interrupt trigger bytes or sets the 151 		 The RX trigger can be set one of four kinds of values for UART 153 		 the RX trigger is changed to the nearest lower value for the 155 		 16550A, which has 1/4/8/14 bytes trigger, the RX trigger is
  | 
| D | sysfs-platform-dell-laptop | 33 		To enable a trigger, write its name preceded by '+' to 34 		this file. To disable a trigger, write its name preceded 37 		For example, to enable the keyboard as trigger run:
  | 
| D | sysfs-bus-iio-accel-bmc150 | 5 		The BMC150 accelerometer kernel module provides an additional trigger,
  | 
| D | sysfs-bus-iio-gyro-bmg160 | 5 		The BMG160 gyro kernel module provides an additional trigger,
  | 
| D | sysfs-bus-coresight-devices-tmc | 7 		following the trigger event. Additional interface for this
  | 
| D | sysfs-bus-coresight-devices-etm3x | 32 		processor contect ID to trigger on, etc.  Individual fields in 41 		addresses to trigger on.  Inclusion or exclusion is specificed 49 		address to trigger on, highly influenced by the configuration 119 Description: 	(RW) Used with the ctxid_idx, specify with context ID to trigger 253 Description: 	(RW) Define the event that controls the trigger.
  | 
| /linux-4.1.27/drivers/pinctrl/samsung/ | 
| D | pinctrl-s3c64xx.c | 238 	int trigger;  in s3c64xx_irq_get_trigger()  local 242 		trigger = EINT_EDGE_RISING;  in s3c64xx_irq_get_trigger() 245 		trigger = EINT_EDGE_FALLING;  in s3c64xx_irq_get_trigger() 248 		trigger = EINT_EDGE_BOTH;  in s3c64xx_irq_get_trigger() 251 		trigger = EINT_LEVEL_HIGH;  in s3c64xx_irq_get_trigger() 254 		trigger = EINT_LEVEL_LOW;  in s3c64xx_irq_get_trigger() 260 	return trigger;  in s3c64xx_irq_get_trigger() 349 	int trigger;  in s3c64xx_gpio_irq_set_type()  local 353 	trigger = s3c64xx_irq_get_trigger(type);  in s3c64xx_gpio_irq_set_type() 354 	if (trigger < 0) {  in s3c64xx_gpio_irq_set_type() [all …] 
 | 
| D | pinctrl-s3c24xx.c | 174 	int trigger;  in s3c24xx_eint_type()  local 178 	trigger = s3c24xx_eint_get_trigger(type);  in s3c24xx_eint_type() 179 	if (trigger < 0) {  in s3c24xx_eint_type() 192 	val |= trigger << shift;  in s3c24xx_eint_type()
  | 
| /linux-4.1.27/arch/x86/kernel/ | 
| D | i8259.c | 233 static void restore_ELCR(char *trigger)  in restore_ELCR()  argument 235 	outb(trigger[0], 0x4d0);  in restore_ELCR() 236 	outb(trigger[1], 0x4d1);  in restore_ELCR() 239 static void save_ELCR(char *trigger)  in save_ELCR()  argument 242 	trigger[0] = inb(0x4d0) & 0xF8;  in save_ELCR() 243 	trigger[1] = inb(0x4d1) & 0xDE;  in save_ELCR()
  | 
| D | devicetree.c | 171 	u32 trigger;  member 179 		.trigger	= IOAPIC_EDGE, 184 		.trigger	= IOAPIC_LEVEL, 189 		.trigger	= IOAPIC_LEVEL, 194 		.trigger	= IOAPIC_EDGE, 219 	if (mp_set_gsi_attr(gsi, it->trigger, it->polarity, cpu_to_node(0)))  in ioapic_xlate()
  | 
| /linux-4.1.27/arch/x86/kernel/apic/ | 
| D | io_apic.c | 82 	int trigger;  member 555 		entry1.trigger = IOAPIC_EDGE;  in native_eoi_ioapic_pin() 605 		if (!entry.trigger) {  in clear_IO_APIC_pin() 606 			entry.trigger = IOAPIC_LEVEL;  in clear_IO_APIC_pin() 877 	int trigger;  in irq_trigger()  local 886 				trigger = default_ISA_trigger(idx);  in irq_trigger() 888 				trigger = default_PCI_trigger(idx);  in irq_trigger() 898 					trigger = default_EISA_trigger(idx);  in irq_trigger() 909 					trigger = 1;  in irq_trigger() 917 			trigger = 0;  in irq_trigger() [all …] 
 | 
| /linux-4.1.27/sound/soc/intel/boards/ | 
| D | haswell.c | 117 		.trigger = {SND_SOC_DPCM_TRIGGER_POST, SND_SOC_DPCM_TRIGGER_POST}, 129 		.trigger = {SND_SOC_DPCM_TRIGGER_POST, SND_SOC_DPCM_TRIGGER_POST}, 140 		.trigger = {SND_SOC_DPCM_TRIGGER_POST, SND_SOC_DPCM_TRIGGER_POST}, 151 		.trigger = {SND_SOC_DPCM_TRIGGER_POST, SND_SOC_DPCM_TRIGGER_POST},
  | 
| D | broadwell.c | 163 		.trigger = {SND_SOC_DPCM_TRIGGER_POST, SND_SOC_DPCM_TRIGGER_POST}, 175 		.trigger = {SND_SOC_DPCM_TRIGGER_POST, SND_SOC_DPCM_TRIGGER_POST}, 186 		.trigger = {SND_SOC_DPCM_TRIGGER_POST, SND_SOC_DPCM_TRIGGER_POST}, 197 		.trigger = {SND_SOC_DPCM_TRIGGER_POST, SND_SOC_DPCM_TRIGGER_POST},
  | 
| /linux-4.1.27/drivers/iio/trigger/ | 
| D | Kconfig | 9 	tristate "Generic interrupt trigger" 12 	  trigger.  This may be provided by a gpio driver for example. 18 	tristate "SYSFS trigger"
  | 
| /linux-4.1.27/drivers/iio/common/hid-sensors/ | 
| D | Kconfig | 18 	tristate "Common module (trigger) for all HID Sensor IIO drivers" 22 	  Say yes here to build trigger support for HID sensors. 26 	  hid-sensor-trigger.
  | 
| D | hid-sensor-trigger.c | 133 	iio_trigger_unregister(attrb->trigger);  in hid_sensor_remove_trigger() 134 	iio_trigger_free(attrb->trigger);  in hid_sensor_remove_trigger() 165 	attrb->trigger = trig;  in hid_sensor_setup_trigger()
  | 
| D | Makefile | 6 obj-$(CONFIG_HID_SENSOR_IIO_TRIGGER) += hid-sensor-trigger.o
  | 
| /linux-4.1.27/arch/arm/vfp/ | 
| D | vfpmodule.c | 336 void VFP_bounce(u32 trigger, u32 fpexc, struct pt_regs *regs)  in VFP_bounce()  argument 340 	pr_debug("VFP: bounce: trigger %08x fpexc %08x\n", trigger, fpexc);  in VFP_bounce() 377 		trigger = fmrx(FPINST);  in VFP_bounce() 386 		 vfp_raise_exceptions(VFP_EXCEPTION_ERROR, trigger, fpscr, regs);  in VFP_bounce() 409 	exceptions = vfp_emulate_instruction(trigger, fpscr, regs);  in VFP_bounce() 411 		vfp_raise_exceptions(exceptions, trigger, orig_fpscr, regs);  in VFP_bounce() 425 	trigger = fmrx(FPINST2);  in VFP_bounce() 428 	exceptions = vfp_emulate_instruction(trigger, orig_fpscr, regs);  in VFP_bounce() 430 		vfp_raise_exceptions(exceptions, trigger, orig_fpscr, regs);  in VFP_bounce()
  | 
| /linux-4.1.27/drivers/gpio/ | 
| D | gpio-vr41xx.c | 232 void vr41xx_set_irq_trigger(unsigned int pin, irq_trigger_t trigger,  in vr41xx_set_irq_trigger()  argument 239 		if (trigger != IRQ_TRIGGER_LEVEL) {  in vr41xx_set_irq_trigger() 246 				switch (trigger) {  in vr41xx_set_irq_trigger() 274 		if (trigger != IRQ_TRIGGER_LEVEL) {  in vr41xx_set_irq_trigger() 281 				switch (trigger) {  in vr41xx_set_irq_trigger() 516 	unsigned int trigger, i, pin;  in giu_probe()  local 556 	trigger = giu_read(GIUINTTYPH) << 16;  in giu_probe() 557 	trigger |= giu_read(GIUINTTYPL);  in giu_probe() 565 		if (trigger & (1 << pin))  in giu_probe()
  | 
| D | gpio-timberdale.c | 136 static int timbgpio_irq_type(struct irq_data *d, unsigned trigger)  in timbgpio_irq_type()  argument 157 	if (trigger & (IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW)) {  in timbgpio_irq_type() 160 		if (trigger & IRQ_TYPE_LEVEL_HIGH)  in timbgpio_irq_type() 166 	if ((trigger & IRQ_TYPE_EDGE_BOTH) == IRQ_TYPE_EDGE_BOTH) {  in timbgpio_irq_type() 177 		if (trigger & IRQ_TYPE_EDGE_FALLING)  in timbgpio_irq_type()
  | 
| D | gpio-pl061.c | 143 static int pl061_irq_type(struct irq_data *d, unsigned trigger)  in pl061_irq_type()  argument 161 	if (trigger & (IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW)) {  in pl061_irq_type() 163 		if (trigger & IRQ_TYPE_LEVEL_HIGH)  in pl061_irq_type() 170 	if ((trigger & IRQ_TYPE_EDGE_BOTH) == IRQ_TYPE_EDGE_BOTH)  in pl061_irq_type() 175 		if (trigger & IRQ_TYPE_EDGE_RISING)  in pl061_irq_type() 177 		else if (trigger & IRQ_TYPE_EDGE_FALLING)  in pl061_irq_type()
  | 
| D | gpio-omap.c | 294 						unsigned trigger)  in omap_set_gpio_trigger()  argument 300 		      trigger & IRQ_TYPE_LEVEL_LOW);  in omap_set_gpio_trigger() 302 		      trigger & IRQ_TYPE_LEVEL_HIGH);  in omap_set_gpio_trigger() 304 		      trigger & IRQ_TYPE_EDGE_RISING);  in omap_set_gpio_trigger() 306 		      trigger & IRQ_TYPE_EDGE_FALLING);  in omap_set_gpio_trigger() 318 		omap_gpio_rmw(base, bank->regs->wkup_en, gpio_bit, trigger != 0);  in omap_set_gpio_trigger() 337 		if (trigger & IRQ_TYPE_EDGE_BOTH)  in omap_set_gpio_trigger() 377 				    unsigned trigger)  in omap_set_gpio_triggering()  argument 384 		omap_set_gpio_trigger(bank, gpio, trigger);  in omap_set_gpio_triggering() 389 		if ((trigger & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)  in omap_set_gpio_triggering() [all …] 
 | 
| D | gpio-davinci.c | 313 static int gpio_irq_type(struct irq_data *d, unsigned trigger)  in gpio_irq_type()  argument 315 	if (trigger & ~(IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))  in gpio_irq_type() 393 static int gpio_irq_type_unbanked(struct irq_data *data, unsigned trigger)  in gpio_irq_type_unbanked()  argument 403 	if (trigger & ~(IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))  in gpio_irq_type_unbanked() 406 	writel_relaxed(mask, (trigger & IRQ_TYPE_EDGE_FALLING)  in gpio_irq_type_unbanked() 408 	writel_relaxed(mask, (trigger & IRQ_TYPE_EDGE_RISING)  in gpio_irq_type_unbanked()
  | 
| D | gpio-max732x.c | 445 	uint8_t trigger;  in max732x_irq_pending()  local 454 	trigger = status >> 8;  in max732x_irq_pending() 455 	trigger &= chip->irq_mask;  in max732x_irq_pending() 457 	if (!trigger)  in max732x_irq_pending() 463 	old_stat = cur_stat ^ trigger;  in max732x_irq_pending() 467 	pending &= trigger;  in max732x_irq_pending()
  | 
| /linux-4.1.27/arch/powerpc/sysdev/ | 
| D | uic.c | 127 	int trigger, polarity;  in uic_set_irq_type()  local 136 		trigger = 1; polarity = 1;  in uic_set_irq_type() 139 		trigger = 1; polarity = 0;  in uic_set_irq_type() 142 		trigger = 0; polarity = 1;  in uic_set_irq_type() 145 		trigger = 0; polarity = 0;  in uic_set_irq_type() 156 	tr = (tr & mask) | (trigger << (31-src));  in uic_set_irq_type()
  | 
| /linux-4.1.27/drivers/input/joystick/iforce/ | 
| D | iforce-ff.c | 298 		|| old->trigger.button != new->trigger.button  in need_core() 299 		|| old->trigger.interval != new->trigger.interval  in need_core() 407 			effect->trigger.button,  in iforce_upload_periodic() 408 			effect->trigger.interval,  in iforce_upload_periodic() 467 			effect->trigger.button,  in iforce_upload_constant() 468 			effect->trigger.interval,  in iforce_upload_constant() 532 			effect->trigger.button, effect->trigger.interval,  in iforce_upload_condition()
  | 
| /linux-4.1.27/Documentation/devicetree/bindings/metag/ | 
| D | meta-intc.txt | 4 representation of a Meta external trigger controller. 44 	 * Meta external trigger block 64 		// Compatible with Meta hardware trigger block. 72 	 * trigger block.
  | 
| /linux-4.1.27/arch/x86/include/asm/ | 
| D | io_apic.h | 76 		trigger		:  1,	/* 0: edge, 1: level */  member 91 		trigger		: 1,  member 167 	int trigger;  member 206 extern int mp_set_gsi_attr(u32 gsi, int trigger, int polarity, int node);
  | 
| D | apicdef.h | 310 			trigger			:  1,  member 368 			trigger		:  1,  member 381 			trigger		:  1,  member
  | 
| D | apb_timer.h | 36 extern int arch_setup_apbt_irqs(int irq, int trigger, int mask, int cpu);
  | 
| D | acpi.h | 52 				  int trigger, int polarity);
  | 
| /linux-4.1.27/drivers/net/wireless/ti/wl12xx/ | 
| D | scan.c | 100 	struct wl1271_cmd_trigger_scan_to *trigger;  in wl1271_scan_send()  local 109 	trigger = kzalloc(sizeof(*trigger), GFP_KERNEL);  in wl1271_scan_send() 110 	if (!cmd || !trigger) {  in wl1271_scan_send() 165 	trigger->timeout = cpu_to_le32(wl->conf.scan.split_scan_timeout);  in wl1271_scan_send() 166 	ret = wl1271_cmd_send(wl, CMD_TRIGGER_SCAN_TO, trigger,  in wl1271_scan_send() 167 			      sizeof(*trigger), 0);  in wl1271_scan_send() 183 	kfree(trigger);  in wl1271_scan_send()
  | 
| /linux-4.1.27/sound/core/seq/ | 
| D | seq_virmidi.c | 88 		if (!vmidi->trigger)  in snd_virmidi_dev_receive_event() 144 		vmidi->trigger = 1;  in snd_virmidi_input_trigger() 146 		vmidi->trigger = 0;  in snd_virmidi_input_trigger() 161 		vmidi->trigger = 1;  in snd_virmidi_output_trigger() 200 		vmidi->trigger = 0;  in snd_virmidi_output_trigger() 355 	.trigger = snd_virmidi_input_trigger, 361 	.trigger = snd_virmidi_output_trigger,
  | 
| /linux-4.1.27/Documentation/devicetree/bindings/gpio/ | 
| D | gpio-altera.txt | 15 - altr,interrupt-trigger: Specifies the interrupt trigger type the GPIO 38 	altr,interrupt-trigger = <IRQ_TYPE_EDGE_RISING>;
  | 
| D | gpio_lpc32xx.txt | 34 			linux,default-trigger = "heartbeat"; 40 			linux,default-trigger = "timer";
  | 
| D | 8xxx_gpio.txt | 40 			defines additional flags (trigger type, 41 			trigger polarity).  Note that the available 42 			set of trigger conditions supported by the
  | 
| D | gpio-nmk.txt | 10                               - bits[3:0] trigger type and level flags:
  | 
| /linux-4.1.27/drivers/iio/ | 
| D | Makefile | 8 industrialio-$(CONFIG_IIO_TRIGGER) += industrialio-trigger.o 29 obj-y += trigger/
  | 
| D | Kconfig | 54        int "Maximum number of consumers per trigger" 59 	given trigger may handle. Default is 2. 74    source "drivers/iio/trigger/Kconfig"
  | 
| /linux-4.1.27/kernel/trace/ | 
| D | trace_events_trigger.c | 611 	char *trigger = NULL;  in event_trigger_callback()  local 617 		trigger = strsep(¶m, " \t");  in event_trigger_callback() 619 	trigger_ops = cmd_ops->get_trigger_ops(cmd, trigger);  in event_trigger_callback() 638 	if (trigger) {  in event_trigger_callback() 639 		number = strsep(&trigger, ":");  in event_trigger_callback() 1172 	char *trigger;  in event_enable_trigger_func()  local 1181 	trigger = strsep(¶m, " \t");  in event_enable_trigger_func() 1182 	if (!trigger)  in event_enable_trigger_func() 1185 	system = strsep(&trigger, ":");  in event_enable_trigger_func() 1186 	if (!trigger)  in event_enable_trigger_func() [all …] 
 | 
| /linux-4.1.27/arch/x86/pci/ | 
| D | xen.c | 109 				     int trigger, int polarity)  in acpi_register_gsi_xen_hvm()  argument 114 	return xen_register_pirq(gsi, -1 /* no GSI override */, trigger,  in acpi_register_gsi_xen_hvm() 148 				 int trigger, int polarity)  in acpi_register_gsi_xen()  argument 150 	return xen_register_gsi(gsi, -1 /* no GSI override */, trigger, polarity);  in acpi_register_gsi_xen() 496 		int trigger, polarity;  in pci_xen_initial_domain()  local 498 		if (acpi_get_override_irq(irq, &trigger, &polarity) == -1)  in pci_xen_initial_domain() 502 			trigger ? ACPI_LEVEL_SENSITIVE : ACPI_EDGE_SENSITIVE,  in pci_xen_initial_domain()
  | 
| /linux-4.1.27/arch/arm/mach-footbridge/ | 
| D | ebsa285.c | 37 	const char *trigger;  member 93 		led->cdev.default_trigger = ebsa285_leds[i].trigger;  in ebsa285_leds_init()
  | 
| /linux-4.1.27/sound/core/ | 
| D | compress_offload.c | 155 		data->stream.ops->trigger(&data->stream, SNDRV_PCM_TRIGGER_STOP);  in snd_compr_free() 649 	retval = stream->ops->trigger(stream, SNDRV_PCM_TRIGGER_PAUSE_PUSH);  in snd_compr_pause() 661 	retval = stream->ops->trigger(stream, SNDRV_PCM_TRIGGER_PAUSE_RELEASE);  in snd_compr_resume() 673 	retval = stream->ops->trigger(stream, SNDRV_PCM_TRIGGER_START);  in snd_compr_start() 686 	retval = stream->ops->trigger(stream, SNDRV_PCM_TRIGGER_STOP);  in snd_compr_stop() 738 	retval = stream->ops->trigger(stream, SND_COMPR_TRIGGER_DRAIN);  in snd_compr_drain() 762 	retval = stream->ops->trigger(stream, SND_COMPR_TRIGGER_NEXT_TRACK);  in snd_compr_next_track() 780 	retval = stream->ops->trigger(stream, SND_COMPR_TRIGGER_PARTIAL_DRAIN);  in snd_compr_partial_drain() 984 	if (snd_BUG_ON(!device->ops->trigger))  in snd_compress_register()
  | 
| /linux-4.1.27/drivers/s390/block/ | 
| D | dasd_eer.c | 279 	__u32 trigger;  member 294 					    int trigger)  in dasd_eer_write_standard_trigger()  argument 311 	header.trigger = trigger;  in dasd_eer_write_standard_trigger() 338 					int trigger)  in dasd_eer_write_snss_trigger()  argument 354 	header.trigger = DASD_EER_STATECHANGE;  in dasd_eer_write_snss_trigger()
  | 
| /linux-4.1.27/sound/soc/ | 
| D | soc-compress.c | 290 	if (platform->driver->compr_ops && platform->driver->compr_ops->trigger) {  in soc_compr_trigger() 291 		ret = platform->driver->compr_ops->trigger(cstream, cmd);  in soc_compr_trigger() 320 		    platform->driver->compr_ops->trigger)  in soc_compr_trigger_fe() 321 			return platform->driver->compr_ops->trigger(cstream,  in soc_compr_trigger_fe() 333 	if (platform->driver->compr_ops && platform->driver->compr_ops->trigger) {  in soc_compr_trigger_fe() 334 		ret = platform->driver->compr_ops->trigger(cstream, cmd);  in soc_compr_trigger_fe() 593 	.trigger	= soc_compr_trigger, 608 	.trigger	= soc_compr_trigger_fe,
  | 
| D | soc-pcm.c | 966 		if (codec_dai->driver->ops && codec_dai->driver->ops->trigger) {  in soc_pcm_trigger() 967 			ret = codec_dai->driver->ops->trigger(substream,  in soc_pcm_trigger() 974 	if (platform->driver->ops && platform->driver->ops->trigger) {  in soc_pcm_trigger() 975 		ret = platform->driver->ops->trigger(substream, cmd);  in soc_pcm_trigger() 980 	if (cpu_dai->driver->ops && cpu_dai->driver->ops->trigger) {  in soc_pcm_trigger() 981 		ret = cpu_dai->driver->ops->trigger(substream, cmd, cpu_dai);  in soc_pcm_trigger() 986 	if (rtd->dai_link->ops && rtd->dai_link->ops->trigger) {  in soc_pcm_trigger() 987 		ret = rtd->dai_link->ops->trigger(substream, cmd);  in soc_pcm_trigger() 1934 	enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];  in dpcm_fe_dai_do_trigger()  local 1938 	switch (trigger) {  in dpcm_fe_dai_do_trigger() [all …] 
 | 
| /linux-4.1.27/arch/arm/plat-omap/ | 
| D | debug-leds.c | 58 	const char *trigger;  member 127 		led->cdev.default_trigger = dbg_leds[i].trigger;  in fpga_probe()
  | 
| /linux-4.1.27/arch/s390/kernel/ | 
| D | ipl.c | 77 	void (*fn) (struct shutdown_trigger *trigger); 538 static void ipl_run(struct shutdown_trigger *trigger)  in ipl_run()  argument 1093 static void reipl_run(struct shutdown_trigger *trigger)  in reipl_run()  argument 1435 static void dump_run(struct shutdown_trigger *trigger)  in dump_run()  argument 1516 static void dump_reipl_run(struct shutdown_trigger *trigger)  in dump_reipl_run()  argument 1524 	dump_run(trigger);  in dump_reipl_run() 1572 static void vmcmd_run(struct shutdown_trigger *trigger)  in vmcmd_run()  argument 1576 	if (strcmp(trigger->name, ON_REIPL_STR) == 0)  in vmcmd_run() 1578 	else if (strcmp(trigger->name, ON_PANIC_STR) == 0)  in vmcmd_run() 1580 	else if (strcmp(trigger->name, ON_HALT_STR) == 0)  in vmcmd_run() [all …] 
 | 
| /linux-4.1.27/arch/arm/kernel/ | 
| D | hw_breakpoint.c | 374 		addr = info->trigger & ~0x3;  in arch_install_hw_breakpoint() 681 	info->trigger		  = addr;  in enable_single_step() 720 			info->trigger = wp->attr.bp_addr;  in watchpoint_handler() 747 			info->trigger = addr;  in watchpoint_handler() 750 		pr_debug("watchpoint fired: address = 0x%x\n", info->trigger);  in watchpoint_handler() 790 		if (info->trigger != pc)  in watchpoint_single_step_handler() 831 			info->trigger = addr;  in breakpoint_handler()
  | 
| /linux-4.1.27/Documentation/input/ | 
| D | gamepad.txt | 78 fashion. For example, the "Nintendo Wii Nunchuk" provides two trigger buttons 80 analog stick and two trigger buttons on the right side. 138   Upper trigger buttons are reported as BTN_TR or ABS_HAT1X (right) and BTN_TL 139   or ABS_HAT1Y (left). Lower trigger buttons are reported as BTN_TR2 or 141   If only one trigger-button combination is present (upper+lower), they are 143     (ABS trigger values start at 0, pressure is reported as positive values)
  | 
| /linux-4.1.27/sound/usb/caiaq/ | 
| D | midi.c | 109 	.trigger =      snd_usb_caiaq_midi_output_trigger, 116 	.trigger =      snd_usb_caiaq_midi_input_trigger,
  | 
| /linux-4.1.27/arch/powerpc/platforms/cell/ | 
| D | axon_msi.c | 76 	u32 __iomem *trigger;  member 455 	out_le32(msic->trigger, val);  in msic_set() 478 	msic->trigger = ioremap(addr, 0x4);  in axon_msi_debug_setup() 479 	if (!msic->trigger) {  in axon_msi_debug_setup()
  | 
| /linux-4.1.27/include/uapi/linux/ | 
| D | if_plip.h | 21 	unsigned long  trigger;  member
  | 
| /linux-4.1.27/Documentation/misc-devices/ | 
| D | apds990x.txt | 100 	RW - trigger / periodic. In "trigger" mode the driver tells two possible 108 	RO - accepted values to prox0_reporting_mode (trigger, periodic)
  | 
| /linux-4.1.27/drivers/spi/ | 
| D | spi-imx.c | 81 	void (*trigger)(struct spi_imx_data *);  member 625 	.trigger = mx1_trigger, 634 	.trigger = mx21_trigger, 644 	.trigger = mx21_trigger, 653 	.trigger = mx31_trigger, 663 	.trigger = mx31_trigger, 672 	.trigger = mx51_ecspi_trigger, 735 	spi_imx->devtype_data->trigger(spi_imx);  in spi_imx_push() 942 	spi_imx->devtype_data->trigger(spi_imx);  in spi_imx_dma_transfer() 970 	spi_imx->devtype_data->trigger(spi_imx);  in spi_imx_dma_transfer()
  | 
| /linux-4.1.27/sound/firewire/dice/ | 
| D | dice-midi.c | 84 	.trigger	= midi_capture_trigger, 90 	.trigger	= midi_playback_trigger,
  | 
| /linux-4.1.27/arch/x86/include/asm/uv/ | 
| D | uv_irq.h | 22 		trigger		:  1,  member
  | 
| /linux-4.1.27/sound/firewire/fireworks/ | 
| D | fireworks_midi.c | 105 	.trigger	= midi_capture_trigger, 111 	.trigger	= midi_playback_trigger,
  | 
| /linux-4.1.27/sound/firewire/bebob/ | 
| D | bebob_midi.c | 104 	.trigger	= midi_capture_trigger, 110 	.trigger	= midi_playback_trigger,
  | 
| /linux-4.1.27/drivers/net/wireless/p54/ | 
| D | led.c | 86 			    char *name, char *trigger)  in p54_register_led()  argument 99 	led->led_dev.default_trigger = trigger;  in p54_register_led()
  | 
| /linux-4.1.27/drivers/leds/trigger/ | 
| D | Kconfig | 5 	  This option enables trigger support for the leds class. 80 	  be triggered by this trigger when user slides up to show 92 comment "iptables trigger is under Netfilter config (LED target)"
  | 
| /linux-4.1.27/arch/arm/mach-pxa/ | 
| D | idp.c | 213 	const char *trigger;  member 259 		led->cdev.default_trigger = idp_leds[i].trigger;  in idp_leds_init()
  | 
| /linux-4.1.27/drivers/net/wireless/ath/carl9170/ | 
| D | led.c | 125 				     char *trigger)  in carl9170_led_register_led()  argument 136 	ar->leds[i].l.default_trigger = trigger;  in carl9170_led_register_led()
  | 
| /linux-4.1.27/arch/mips/include/asm/vr41xx/ | 
| D | giu.h | 44 extern void vr41xx_set_irq_trigger(unsigned int pin, irq_trigger_t trigger,
  | 
| /linux-4.1.27/drivers/ps3/ | 
| D | ps3-vuart.c | 689 	if (priv->rx_list.work.trigger) {  in ps3_vuart_read_async() 706 	priv->rx_list.work.trigger = bytes;  in ps3_vuart_read_async() 718 	to_port_priv(dev)->rx_list.work.trigger = 0;  in ps3_vuart_cancel_async() 807 	if (priv->rx_list.work.trigger && priv->rx_list.bytes_held  in ps3_vuart_handle_interrupt_rx() 808 		>= priv->rx_list.work.trigger) {  in ps3_vuart_handle_interrupt_rx() 810 			__func__, __LINE__, priv->rx_list.work.trigger);  in ps3_vuart_handle_interrupt_rx() 811 		priv->rx_list.work.trigger = 0;  in ps3_vuart_handle_interrupt_rx() 1049 	priv->rx_list.work.trigger = 0;  in ps3_vuart_probe()
  | 
| D | vuart.h | 36 	unsigned long trigger;  member
  | 
| /linux-4.1.27/sound/soc/davinci/ | 
| D | davinci-i2s.c | 208 		if (platform->driver->ops->trigger) {  in davinci_mcbsp_start() 209 			int ret = platform->driver->ops->trigger(substream,  in davinci_mcbsp_start() 230 		if (platform->driver->ops->trigger) {  in davinci_mcbsp_start() 231 			int ret = platform->driver->ops->trigger(substream,  in davinci_mcbsp_start() 614 	.trigger	= davinci_i2s_trigger,
  | 
| /linux-4.1.27/drivers/iio/adc/ | 
| D | xilinx-xadc-core.c | 488 	if ((status & XADC_AXI_INT_EOS) && xadc->trigger)  in xadc_axi_interrupt_handler() 489 		iio_trigger_poll(xadc->trigger);  in xadc_axi_interrupt_handler() 647 static int xadc_trigger_set_state(struct iio_trigger *trigger, bool state)  in xadc_trigger_set_state()  argument 649 	struct xadc *xadc = iio_trigger_get_drvdata(trigger);  in xadc_trigger_set_state() 659 		if (xadc->trigger != NULL) {  in xadc_trigger_set_state() 663 			xadc->trigger = trigger;  in xadc_trigger_set_state() 664 			if (trigger == xadc->convst_trigger)  in xadc_trigger_set_state() 674 		xadc->trigger = NULL;  in xadc_trigger_set_state()
  | 
| /linux-4.1.27/drivers/net/wireless/ath/ath5k/ | 
| D | led.c | 127 		   const char *name, char *trigger)  in ath5k_register_led()  argument 135 	led->led_dev.default_trigger = trigger;  in ath5k_register_led()
  | 
| /linux-4.1.27/arch/arc/boot/dts/ | 
| D | abilis_tb101_dvk.dts | 68 				linux,default-trigger = "default-on"; 73 				linux,default-trigger = "heartbeat";
  | 
| D | abilis_tb100_dvk.dts | 68 				linux,default-trigger = "default-on"; 73 				linux,default-trigger = "heartbeat";
  | 
| /linux-4.1.27/arch/arm/mach-omap1/ | 
| D | irq.c | 126 static void omap_irq_set_cfg(int irq, int fiq, int priority, int trigger)  in omap_irq_set_cfg()  argument 134 	val = fiq | ((priority & 0x1f) << 2) | ((trigger & 0x1) << 1);  in omap_irq_set_cfg()
  | 
| /linux-4.1.27/include/sound/ | 
| D | seq_virmidi.h | 39 	unsigned int trigger: 1;  member
  | 
| D | pcm_oss.h | 42 		 trigger: 1,			/* trigger flag */  member
  | 
| /linux-4.1.27/drivers/staging/iio/ | 
| D | Makefile | 23 obj-y += trigger/
  | 
| D | TODO | 61 Periodic Timer trigger 69 GPIO trigger
  | 
| /linux-4.1.27/include/media/ | 
| D | smiapp.h | 57 	u8 trigger;  member
  | 
| /linux-4.1.27/Documentation/devicetree/bindings/input/ | 
| D | tca8418_keypad.txt | 9 - interrupts: IRQ line number, should trigger on falling edge
  | 
| D | qcom,pm8941-pwrkey.txt | 27 		    for state change interrupt to trigger.
  | 
| /linux-4.1.27/drivers/pinctrl/ | 
| D | pinctrl-coh901.c | 447 static int u300_gpio_irq_type(struct irq_data *d, unsigned trigger)  in u300_gpio_irq_type()  argument 455 	if ((trigger & IRQF_TRIGGER_RISING) &&  in u300_gpio_irq_type() 456 	    (trigger & IRQF_TRIGGER_FALLING)) {  in u300_gpio_irq_type() 467 	} else if (trigger & IRQF_TRIGGER_RISING) {  in u300_gpio_irq_type() 473 	} else if (trigger & IRQF_TRIGGER_FALLING) {  in u300_gpio_irq_type()
  | 
| /linux-4.1.27/Documentation/power/ | 
| D | suspend-and-interrupts.txt | 17 trigger and if any devices have not been suspended properly yet, it is better to 35 There are interrupts that can legitimately trigger during the entire system 65 during system sleep so as to trigger a system wakeup when needed.  For example, 103 IRQ subsystem to trigger a system wakeup. 105 System wakeup interrupts, in turn, will trigger wakeup from suspend-to-idle in
  | 
| /linux-4.1.27/sound/pci/oxygen/ | 
| D | oxygen_pcm.c | 641 	.trigger   = oxygen_trigger, 652 	.trigger   = oxygen_trigger, 663 	.trigger   = oxygen_trigger, 674 	.trigger   = oxygen_trigger, 685 	.trigger   = oxygen_trigger, 696 	.trigger   = oxygen_trigger,
  | 
| /linux-4.1.27/drivers/mfd/ | 
| D | asic3.c | 303 	u16 trigger, level, edge, bit;  in asic3_gpio_irq_type()  local 315 	trigger = asic3_read_register(asic,  in asic3_gpio_irq_type() 320 		trigger |= bit;  in asic3_gpio_irq_type() 323 		trigger |= bit;  in asic3_gpio_irq_type() 326 		trigger |= bit;  in asic3_gpio_irq_type() 333 		trigger &= ~bit;  in asic3_gpio_irq_type() 336 		trigger &= ~bit;  in asic3_gpio_irq_type() 351 			     trigger);  in asic3_gpio_irq_type()
  | 
| /linux-4.1.27/drivers/net/plip/ | 
| D | plip.c | 215 	unsigned long  trigger;  member 304 	nl->trigger	= PLIP_TRIGGER_WAIT;  in plip_init_netdev() 604 			if (plip_receive(nl->trigger, dev,  in plip_receive_packet() 768 		cx = nl->trigger;  in plip_send_packet() 1210 		pc->trigger = nl->trigger;  in plip_ioctl() 1216 		nl->trigger = pc->trigger;  in plip_ioctl()
  | 
| /linux-4.1.27/sound/oss/ | 
| D | dmabuf.c | 421 		if (adev->d->trigger)  in DMAbuf_launch_output() 422 			adev->d->trigger(dev,adev->enable_bits * adev->go);  in DMAbuf_launch_output() 548 		if (adev->d->trigger)  in DMAbuf_activate_recording() 549 			adev->d->trigger(dev, adev->enable_bits * adev->go);  in DMAbuf_activate_recording() 705 		if (adev->d->trigger)  in DMAbuf_start_devices() 706 			adev->d->trigger(dev,adev->enable_bits * adev->go);  in DMAbuf_start_devices() 1090 			if (adev->d->trigger)  in do_inputintr() 1091 				adev->d->trigger(dev, adev->enable_bits * adev->go);  in do_inputintr() 1117 		if (adev->d->trigger)  in do_inputintr() 1118 			adev->d->trigger(dev,adev->enable_bits * adev->go);  in do_inputintr()
  | 
| D | sb_audio.c | 942 	.trigger		= sb1_audio_trigger, 958 	.trigger		= sb20_audio_trigger, 974 	.trigger		= sb20_audio_trigger, 990 	.trigger		= sb20_audio_trigger, 1006 	.trigger		= sb20_audio_trigger, 1023 	.trigger		= sb16_audio_trigger,
  | 
| D | audio.c | 450 				if (audio_devs[dev]->d->trigger)	/* Supports SETTRIGGER */  in audio_ioctl() 825 			if (audio_devs[dev]->d->trigger == NULL)  in dma_ioctl() 869 			if (changed && audio_devs[dev]->d->trigger)  in dma_ioctl() 870 				audio_devs[dev]->d->trigger(dev, bits * audio_devs[dev]->go);  in dma_ioctl() 879 			if (!audio_devs[dev]->d->trigger)  in dma_ioctl() 881 			audio_devs[dev]->d->trigger(dev, 0);  in dma_ioctl()
  | 
| /linux-4.1.27/sound/usb/6fire/ | 
| D | midi.c | 145 	.trigger = usb6fire_midi_out_trigger, 152 	.trigger = usb6fire_midi_in_trigger
  | 
| /linux-4.1.27/sound/firewire/oxfw/ | 
| D | oxfw-midi.c | 122 	.trigger	= midi_capture_trigger, 128 	.trigger	= midi_playback_trigger,
  | 
| /linux-4.1.27/Documentation/devicetree/bindings/watchdog/ | 
| D | men-a021-wdt.txt | 8   3: Watchdog trigger
  | 
| /linux-4.1.27/Documentation/devicetree/bindings/arc/ | 
| D | pct.txt | 9    counted, the HW events themselves cannot serve as a trigger for a sample.
  | 
| /linux-4.1.27/drivers/tty/serial/ | 
| D | pch_uart.c | 239 	int trigger;  member 518 				 unsigned int fifo_size, unsigned int trigger)  in pch_uart_hal_set_fifo()  argument 534 	if (trigger & ~PCH_UART_FCR_RFTL) {  in pch_uart_hal_set_fifo() 536 			__func__, trigger);  in pch_uart_hal_set_fifo() 543 		    trigger_level_256[trigger >> PCH_UART_FCR_RFTL_SHIFT];  in pch_uart_hal_set_fifo() 547 		    trigger_level_64[trigger >> PCH_UART_FCR_RFTL_SHIFT];  in pch_uart_hal_set_fifo() 551 		    trigger_level_16[trigger >> PCH_UART_FCR_RFTL_SHIFT];  in pch_uart_hal_set_fifo() 555 		    trigger_level_1[trigger >> PCH_UART_FCR_RFTL_SHIFT];  in pch_uart_hal_set_fifo() 559 	    dmamode | fifo_size | trigger | PCH_UART_FCR_RFR | PCH_UART_FCR_TFR;  in pch_uart_hal_set_fifo() 1326 	switch (priv->trigger) {  in pch_uart_startup() [all …] 
 | 
| /linux-4.1.27/drivers/staging/rtl8723au/hal/ | 
| D | hal_com.c | 322 	u8 trigger;  in c2h_evt_read23a()  local 327 	trigger = rtl8723au_read8(adapter, REG_C2HEVT_CLEAR);  in c2h_evt_read23a() 329 	if (trigger == C2H_EVT_HOST_CLOSE)  in c2h_evt_read23a() 331 	else if (trigger != C2H_EVT_FW_CLOSE)  in c2h_evt_read23a() 347 			  trigger);  in c2h_evt_read23a()
  | 
| /linux-4.1.27/drivers/net/wireless/iwlwifi/mvm/ | 
| D | fw.c | 517 				struct iwl_fw_dbg_trigger_tlv *trigger,  in iwl_mvm_fw_dbg_collect_trig()  argument 520 	unsigned int delay = msecs_to_jiffies(le32_to_cpu(trigger->stop_delay));  in iwl_mvm_fw_dbg_collect_trig() 521 	u16 occurrences = le16_to_cpu(trigger->occurrences);  in iwl_mvm_fw_dbg_collect_trig() 544 	ret = iwl_mvm_fw_dbg_collect(mvm, le32_to_cpu(trigger->id), buf,  in iwl_mvm_fw_dbg_collect_trig() 549 	trigger->occurrences = cpu_to_le16(occurrences - 1);  in iwl_mvm_fw_dbg_collect_trig()
  | 
| /linux-4.1.27/Documentation/networking/ | 
| D | PLIP.txt | 64 IRQs and trigger timeouts 92 quite possible for the trigger timeout to expire between two such polls, as 94 trigger timeout on the *other* side of a PLIP connection, to about 98 It appears that in practice, the trigger timeout can be shorter than in the 106 'plipconfig plipX trigger 10000', where plipX is the appropriate
  | 
| /linux-4.1.27/drivers/net/phy/ | 
| D | dp83640.c | 307 			   int trigger)  in periodic_output()  argument 316 					trigger);  in periodic_output() 324 		(trigger & TRIG_CSEL_MASK) << TRIG_CSEL_SHIFT |  in periodic_output() 329 	val = (trigger & TRIG_SEL_MASK) << TRIG_SEL_SHIFT;  in periodic_output() 360 	if (trigger < 2) {  in periodic_output() 621 	u16 cal_gpio, cfg0, evnt, ptp_trig, trigger, val;  in recalibrate()  local 623 	trigger = CAL_TRIGGER;  in recalibrate() 664 	ptp_trig |= (trigger  & TRIG_CSEL_MASK) << TRIG_CSEL_SHIFT;  in recalibrate() 669 	val = (trigger & TRIG_SEL_MASK) << TRIG_SEL_SHIFT;  in recalibrate() 679 	val = (trigger & TRIG_SEL_MASK) << TRIG_SEL_SHIFT;  in recalibrate()
  | 
| /linux-4.1.27/Documentation/devicetree/bindings/drm/i2c/ | 
| D | tda998x.txt | 9   - interrupts: interrupt number and trigger type
  | 
| /linux-4.1.27/Documentation/devicetree/bindings/timer/ | 
| D | nvidia,tegra20-timer.txt | 4 running counter. The first two channels may also trigger a watchdog reset.
  | 
| D | nvidia,tegra30-timer.txt | 5 trigger a legacy watchdog reset.
  | 
| /linux-4.1.27/drivers/platform/x86/ | 
| D | dell-laptop.c | 1517 	char trigger[21];  in kbd_led_triggers_store()  local 1520 	ret = sscanf(buf, "%20s", trigger);  in kbd_led_triggers_store() 1524 	if (trigger[0] != '+' && trigger[0] != '-')  in kbd_led_triggers_store() 1540 			if (strcmp(trigger+1, kbd_led_triggers[i]) != 0)  in kbd_led_triggers_store() 1542 			if (trigger[0] == '+' &&  in kbd_led_triggers_store() 1545 			if (trigger[0] == '-' &&  in kbd_led_triggers_store() 1555 		if (trigger[0] == '+')  in kbd_led_triggers_store()
  | 
| /linux-4.1.27/drivers/pci/pcie/aer/ | 
| D | Kconfig.debug | 14 	  to trigger various real hardware errors. Software based
  | 
| /linux-4.1.27/drivers/input/ | 
| D | input-compat.h | 56 	struct ff_trigger trigger;  member
  | 
| /linux-4.1.27/arch/x86/platform/uv/ | 
| D | uv_irq.c | 165 	entry->trigger		= 0;  in arch_enable_uv_irq() 217 	entry->trigger		= 0;  in uv_set_irq_affinity()
  | 
| /linux-4.1.27/sound/pci/echoaudio/ | 
| D | midi.c | 294 	.trigger = snd_echo_midi_input_trigger, 300 	.trigger = snd_echo_midi_output_trigger,
  | 
| /linux-4.1.27/sound/usb/line6/ | 
| D | midi.c | 206 	.trigger = line6_midi_output_trigger, 213 	.trigger = line6_midi_input_trigger,
  | 
| /linux-4.1.27/Documentation/devicetree/bindings/iio/ | 
| D | iio-bindings.txt | 21 Example for a simple configuration with no trigger: 29 Example for a configuration with trigger:
  | 
| /linux-4.1.27/drivers/net/ethernet/sfc/ | 
| D | rx.c | 745 	unsigned int max_fill, trigger, max_trigger;  in efx_init_rx_queue()  local 768 		trigger = max_fill * min(rx_refill_threshold, 100U) / 100U;  in efx_init_rx_queue() 769 		if (trigger > max_trigger)  in efx_init_rx_queue() 770 			trigger = max_trigger;  in efx_init_rx_queue() 772 		trigger = max_trigger;  in efx_init_rx_queue() 776 	rx_queue->fast_fill_trigger = trigger;  in efx_init_rx_queue()
  | 
| /linux-4.1.27/Documentation/acpi/apei/ | 
| D | einj.txt | 65   Write any integer to this file to trigger the error injection. Make 106   error, then perform some actions to trigger it. Setting "notrigger" 107   to 1 skips the trigger phase, which *may* allow the user to cause the 111   includes in the trigger phase.
  | 
| /linux-4.1.27/drivers/staging/iio/trigger/ | 
| D | Kconfig | 19 	tristate "Blackfin TIMER trigger"
  | 
| /linux-4.1.27/sound/isa/gus/ | 
| D | gus_uart.c | 234 	.trigger =	snd_gf1_uart_output_trigger, 241 	.trigger =	snd_gf1_uart_input_trigger,
  | 
| /linux-4.1.27/Documentation/video4linux/cx2341x/ | 
| D | fw-decoder-regs.txt | 47 	Decoder horizontal Y alias trigger 50      The first five registers must all be loaded before accessing the trigger 81 	Decoder horizontal UV alias trigger 84      Operation is the same as the Y filter, with 2830 being the trigger 420 	Decoder vertical Y alias trigger 425      the trigger register (2908). As for the horizontal filter, the values are 439 	Decoder vertical UV alias trigger 442      plane. Operation is the same as the Y filter, with 2914 being the trigger.
  | 
| /linux-4.1.27/sound/isa/sb/ | 
| D | sb8_midi.c | 254 	.trigger =	snd_sb8dsp_midi_output_trigger, 261 	.trigger =	snd_sb8dsp_midi_input_trigger,
  | 
| /linux-4.1.27/sound/core/oss/ | 
| D | pcm_oss.c | 996 	if (runtime->oss.trigger) {  in snd_pcm_oss_change_params() 1978 static int snd_pcm_oss_set_trigger(struct snd_pcm_oss_file *pcm_oss_file, int trigger)  in snd_pcm_oss_set_trigger()  argument 1985 	pcm_dbg(substream->pcm, "pcm_oss: trigger = 0x%x\n", trigger);  in snd_pcm_oss_set_trigger() 2001 		if (trigger & PCM_ENABLE_OUTPUT) {  in snd_pcm_oss_set_trigger() 2002 			if (runtime->oss.trigger)  in snd_pcm_oss_set_trigger() 2007 			runtime->oss.trigger = 1;  in snd_pcm_oss_set_trigger() 2011 			if (!runtime->oss.trigger)  in snd_pcm_oss_set_trigger() 2013 			runtime->oss.trigger = 0;  in snd_pcm_oss_set_trigger() 2025 		if (trigger & PCM_ENABLE_INPUT) {  in snd_pcm_oss_set_trigger() 2026 			if (runtime->oss.trigger)  in snd_pcm_oss_set_trigger() [all …] 
 | 
| /linux-4.1.27/Documentation/devicetree/bindings/interrupt-controller/ | 
| D | allwinner,sun67i-sc-nmi.txt | 12   second cell the trigger type as defined in interrupt.txt in this directory.
  | 
| /linux-4.1.27/sound/soc/codecs/ | 
| D | wm0010.c | 885 	int trigger;  in wm0010_spi_probe()  local 953 		trigger = wm0010->pdata.irq_flags;  in wm0010_spi_probe() 955 		trigger = IRQF_TRIGGER_FALLING;  in wm0010_spi_probe() 956 	trigger |= IRQF_ONESHOT;  in wm0010_spi_probe() 958 	ret = request_threaded_irq(irq, NULL, wm0010_irq, trigger | IRQF_ONESHOT,  in wm0010_spi_probe()
  | 
| D | max98357a.c | 84 	.trigger	= max98357a_daiops_trigger,
  | 
| /linux-4.1.27/arch/arm64/include/asm/ | 
| D | hw_breakpoint.h | 31 	u64 trigger;  member
  | 
| /linux-4.1.27/arch/frv/kernel/ | 
| D | irq.c | 152 #error dont know external IRQ trigger levels for this setup  in init_IRQ()
  |