Searched defs:action (Results 1 - 25 of 194) sorted by relevance

12345678

/drivers/acpi/acpica/
H A Dpsxface.c60 acpi_ps_update_parameter_list(struct acpi_evaluate_info *info, u16 action);
375 acpi_ps_update_parameter_list(struct acpi_evaluate_info *info, u16 action) argument
389 action);
H A Dutstate.c218 * Action - Update action to be performed
229 *object, u16 action)
246 state->update.value = action;
256 * Action - Update action to be performed
228 acpi_ut_create_update_state(union acpi_operand_object *object, u16 action) argument
H A Dhwgpe.c84 * action - Enable or disable
93 acpi_hw_low_set_gpe(struct acpi_gpe_event_info *gpe_event_info, u32 action) argument
120 switch (action) {
140 ACPI_ERROR((AE_INFO, "Invalid GPE Action, %u\n", action));
H A Dutdelete.c57 acpi_ut_update_ref_count(union acpi_operand_object *object, u32 action);
371 acpi_ut_update_ref_count(union acpi_operand_object *object, u32 action) argument
386 * Perform the reference count action (increment, decrement, force delete)
388 switch (action) {
440 ACPI_ERROR((AE_INFO, "Unknown action (0x%X)", action));
478 acpi_ut_update_object_reference(union acpi_operand_object *object, u16 action) argument
511 system_notify, action);
513 device_notify, action);
529 (object->package.elements[i], action,
[all...]
/drivers/leds/
H A Dledtrig-sleep.c21 unsigned long action,
46 unsigned long action,
49 switch (action) {
45 ledtrig_sleep_pm_callback(struct notifier_block *nfb, unsigned long action, void *ignored) argument
/drivers/net/wireless/libertas/
H A Dcmdresp.c124 u16 action = le16_to_cpu(psmode->action); local
127 "CMD_RESP: PS_MODE cmd reply result 0x%x, action 0x%x\n",
128 result, action);
139 action == PS_MODE_ACTION_ENTER_PS)
141 } else if (action == PS_MODE_ACTION_ENTER_PS) {
161 } else if (action == PS_MODE_ACTION_EXIT_PS) {
166 lbs_deb_host("CMD_RESP: PS action 0x%X\n", action);
/drivers/oprofile/
H A Dtimer_int.c78 unsigned long action, void *hcpu)
82 switch (action) {
77 oprofile_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu) argument
H A Dnmi_timer_int.c62 static int nmi_timer_cpu_notifier(struct notifier_block *b, unsigned long action, argument
66 switch (action) {
/drivers/xen/
H A Dpci.c160 unsigned long action, void *data)
165 switch (action) {
177 action == BUS_NOTIFY_ADD_DEVICE ? "add" :
178 (action == BUS_NOTIFY_DEL_DEVICE ? "delete" : "?"));
159 xen_pci_notifier(struct notifier_block *nb, unsigned long action, void *data) argument
/drivers/isdn/pcbit/
H A Dedss1.c269 struct fsm_entry * action; local
275 for (action = fsm_table; action->init != 0xff; action++)
276 if (action->init == chan->fsm_state && action->event == event)
279 if (action->init == 0xff) {
292 chan->fsm_state = action->final;
294 pcbit_state_change(dev, chan, action->init, event, action
[all...]
/drivers/pci/hotplug/
H A Dfakephp.c105 unsigned long action, void *data)
109 if (action == BUS_NOTIFY_ADD_DEVICE) {
111 } else if (action == BUS_NOTIFY_DEL_DEVICE) {
104 legacy_notify(struct notifier_block *nb, unsigned long action, void *data) argument
/drivers/acpi/apei/
H A Dapei-internal.h53 int __apei_exec_run(struct apei_exec_context *ctx, u8 action, bool optional);
55 static inline int apei_exec_run(struct apei_exec_context *ctx, u8 action) argument
57 return __apei_exec_run(ctx, action, 0);
60 /* It is optional whether the firmware provides the action */
61 static inline int apei_exec_run_optional(struct apei_exec_context *ctx, u8 action) argument
63 return __apei_exec_run(ctx, action, 1);
/drivers/acpi/
H A Dcontainer.c208 int *action = context; local
227 switch (*action) {
251 int action = INSTALL_NOTIFY_HANDLER; local
262 container_walk_namespace_cb, NULL, &action, NULL);
269 int action = UNINSTALL_NOTIFY_HANDLER; local
275 container_walk_namespace_cb, NULL, &action, NULL);
/drivers/base/power/
H A Dclock_ops.c275 * @action: Operation being carried out by the caller.
282 * of PM clocks, depending on @action.
289 unsigned long action, void *data)
296 dev_dbg(dev, "%s() %ld\n", __func__, action);
300 switch (action) {
425 * @action: Operation being carried out by the caller.
431 * the device's clocks, depending on @action.
434 unsigned long action, void *data)
440 dev_dbg(dev, "%s() %ld\n", __func__, action);
444 switch (action) {
288 pm_clk_notify(struct notifier_block *nb, unsigned long action, void *data) argument
433 pm_clk_notify(struct notifier_block *nb, unsigned long action, void *data) argument
[all...]
H A Dqos.c81 * @action: action to perform add/update/remove, of type enum pm_qos_req_action
89 enum pm_qos_req_action action, int value)
94 &req->node, action, value);
88 apply_constraint(struct dev_pm_qos_request *req, enum pm_qos_req_action action, int value) argument
/drivers/base/
H A Dtopology.c161 unsigned long action, void *hcpu)
166 switch (action) {
160 topology_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu) argument
/drivers/hid/
H A Dhid-roccat-arvo.h68 uint8_t action; member in struct:arvo_roccat_report
/drivers/md/
H A Ddm-uevent.c34 enum kobject_action action; member in struct:__anon1306
45 enum kobject_action action; member in struct:dm_uevent
73 enum kobject_action action,
86 event->action = action;
165 r = kobject_uevent_env(kobj, event->action, event->ku_env.envp);
195 _dm_uevent_type_names[event_type].action,
71 dm_build_path_uevent(struct mapped_device *md, struct dm_target *ti, enum kobject_action action, const char *dm_action, const char *path, unsigned nr_valid_paths) argument
/drivers/usb/mon/
H A Dmon_main.c221 static int mon_notify(struct notifier_block *self, unsigned long action, argument
224 switch (action) {
/drivers/usb/storage/
H A Donetouch.c156 static void usb_onetouch_pm_hook(struct us_data *us, int action) argument
161 switch (action) {
/drivers/cpufreq/
H A Dcpufreq_stats.c341 unsigned long action,
346 switch (action) {
340 cpufreq_stat_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu) argument
/drivers/hwmon/
H A Dvia-cputemp.c291 unsigned long action, void *hcpu)
295 switch (action) {
290 via_cputemp_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu) argument
/drivers/i2c/
H A Di2c-dev.c577 static int i2cdev_notifier_call(struct notifier_block *nb, unsigned long action, argument
582 switch (action) {
/drivers/idle/
H A Dintel_idle.c300 unsigned long action, void *hcpu)
304 switch (action & 0xf) {
299 setup_broadcast_cpuhp_notify(struct notifier_block *n, unsigned long action, void *hcpu) argument
/drivers/iommu/
H A Diommu.c63 unsigned long action, void *data)
67 if (action == BUS_NOTIFY_ADD_DEVICE)
69 else if (action == BUS_NOTIFY_DEL_DEVICE)
62 iommu_device_notifier(struct notifier_block *nb, unsigned long action, void *data) argument

Completed in 575 milliseconds

12345678