/kernel/linux/linux-6.6/drivers/platform/x86/x86-android-tablets/ |
H A D | core.c | 62 acpi_status status; in x86_acpi_irq_helper_get() local 96 status = acpi_get_handle(NULL, data->chip, &handle); in x86_acpi_irq_helper_get() 97 if (ACPI_FAILURE(status)) { in x86_acpi_irq_helper_get() 139 acpi_status status; in x86_instantiate_i2c_client() local 145 status = acpi_get_handle(NULL, client_info->adapter_path, &handle); in x86_instantiate_i2c_client() 146 if (ACPI_FAILURE(status)) { in x86_instantiate_i2c_client()
|
/kernel/linux/linux-6.6/drivers/platform/x86/amd/pmf/ |
H A D | acpi.c | 23 acpi_status status; in apmf_if_call() local 40 status = acpi_evaluate_object(ahandle, "APMF", &apmf_if_arg_list, &buffer); in apmf_if_call() 41 if (ACPI_FAILURE(status)) { in apmf_if_call() 270 acpi_status status; in apmf_install_handler() local 275 status = acpi_install_notify_handler(ahandle, ACPI_ALL_NOTIFY, in apmf_install_handler() 277 if (ACPI_FAILURE(status)) { in apmf_install_handler()
|
/kernel/linux/linux-6.6/drivers/thermal/intel/int340x_thermal/ |
H A D | processor_thermal_device.c | 136 acpi_status status; in proc_thermal_read_ppcc() local 142 status = acpi_evaluate_object(proc_priv->adev->handle, "PPCC", in proc_thermal_read_ppcc() 144 if (ACPI_FAILURE(status)) in proc_thermal_read_ppcc() 205 acpi_status status; in proc_thermal_add() local 221 status = acpi_evaluate_integer(adev->handle, "_TMP", NULL, &tmp); in proc_thermal_add() 222 if (ACPI_FAILURE(status)) { in proc_thermal_add()
|
/kernel/linux/linux-6.6/drivers/pwm/ |
H A D | pwm-omap-dmtimer.c | 119 u32 status; in pwm_omap_dmtimer_is_enabled() local 121 status = omap->pdata->get_pwm_status(omap->dm_timer); in pwm_omap_dmtimer_is_enabled() 123 return !!(status & OMAP_TIMER_CTRL_ST); in pwm_omap_dmtimer_is_enabled() 134 u32 status; in pwm_omap_dmtimer_polarity() local 136 status = omap->pdata->get_pwm_status(omap->dm_timer); in pwm_omap_dmtimer_polarity() 138 return !!(status & OMAP_TIMER_CTRL_SCPWM); in pwm_omap_dmtimer_polarity()
|
/kernel/linux/linux-6.6/drivers/usb/serial/ |
H A D | ir-usb.c | 316 int status = urb->status; in ir_write_bulk_callback() local 324 switch (status) { in ir_write_bulk_callback() 330 dev_dbg(&port->dev, "write urb stopped: %d\n", status); in ir_write_bulk_callback() 333 dev_err(&port->dev, "write urb stopped: %d\n", status); in ir_write_bulk_callback() 336 dev_err(&port->dev, "nonzero write-urb status: %d\n", status); in ir_write_bulk_callback()
|
/kernel/linux/linux-6.6/drivers/fsi/ |
H A D | fsi-master-i2cr.c | 102 u64 status; in i2cr_check_status() local 105 ret = i2cr_transfer(client, I2CR_STATUS_CMD, &status); in i2cr_check_status() 109 if (status & I2CR_STATUS_ERR) { in i2cr_check_status() 117 trace_i2cr_status_error(client, status, error, log); in i2cr_check_status() 128 dev_err(&client->dev, "status:%016llx error:%016llx log:%016llx\n", status, error, in i2cr_check_status() 133 trace_i2cr_status(client, status); in i2cr_check_status()
|
/kernel/linux/linux-6.6/drivers/comedi/drivers/ |
H A D | icp_multi.c | 41 #define ICP_MULTI_ADC_CSR 0x00 /* R/W: ADC command/status register */ 50 #define ICP_MULTI_DAC_CSR 0x04 /* R/W: DAC command/status register */ 60 #define ICP_MULTI_INT_STAT 0x0e /* R/W: Interrupt status register */ 64 #define ICP_MULTI_INT_DIN_STAT BIT(3) /* Digital input status change int. */ 92 unsigned int status; in icp_multi_ai_eoc() local 94 status = readw(dev->mmio + ICP_MULTI_ADC_CSR); in icp_multi_ai_eoc() 95 if ((status & ICP_MULTI_ADC_CSR_BSY) == 0) in icp_multi_ai_eoc() 145 unsigned int status; in icp_multi_ao_ready() local 147 status = readw(dev->mmio + ICP_MULTI_DAC_CSR); in icp_multi_ao_ready() 148 if ((status in icp_multi_ao_ready() [all...] |
/kernel/linux/linux-6.6/include/trace/events/ |
H A D | compaction.h | 134 int status), 136 TP_ARGS(cc, zone_start, zone_end, sync, status), 144 __field(int, status) 153 __entry->status = status; 156 TP_printk("zone_start=0x%lx migrate_pfn=0x%lx free_pfn=0x%lx zone_end=0x%lx, mode=%s status=%s", 162 __print_symbolic(__entry->status, COMPACTION_STATUS))
|
H A D | handshake.h | 247 int status 249 TP_ARGS(net, req, sk, status), 253 __field(int, status) 259 __entry->status = status; 262 TP_printk("req=%p sk=%p status=%d", 263 __entry->req, __entry->sk, __entry->status
|
/kernel/linux/linux-6.6/drivers/dma/ptdma/ |
H A D | ptdma-dev.c | 146 u32 status; in pt_check_status_trans() local 148 status = ioread32(cmd_q->reg_control + 0x0010); in pt_check_status_trans() 149 if (status) { in pt_check_status_trans() 150 cmd_q->int_status = status; in pt_check_status_trans() 155 if ((status & INT_ERROR) && !cmd_q->cmd_error) in pt_check_status_trans() 159 iowrite32(status, cmd_q->reg_control + 0x0010); in pt_check_status_trans() 230 /* Clear the interrupt status */ in pt_core_init() 292 /* Clear the interrupt status */ in pt_core_destroy()
|
/kernel/linux/linux-6.6/drivers/net/wireless/mediatek/mt76/ |
H A D | mt792x.h | 208 mt792x_get_status_freq_info(struct mt76_rx_status *status, u8 chfreq) in mt792x_get_status_freq_info() argument 211 status->band = NL80211_BAND_6GHZ; in mt792x_get_status_freq_info() 214 status->band = NL80211_BAND_5GHZ; in mt792x_get_status_freq_info() 216 status->band = NL80211_BAND_2GHZ; in mt792x_get_status_freq_info() 218 status->freq = ieee80211_channel_to_frequency(chfreq, status->band); in mt792x_get_status_freq_info()
|
/kernel/linux/linux-6.6/drivers/pcmcia/ |
H A D | pxa2xx_sharpsl.c | 143 nimr |= ((skt->status&SS_DETECT) ? 0x0004 : 0)| in sharpsl_pcmcia_configure_socket() 144 ((skt->status&SS_READY) ? 0x0002 : 0)| in sharpsl_pcmcia_configure_socket() 145 ((skt->status&SS_BATDEAD)? 0x0010 : 0)| in sharpsl_pcmcia_configure_socket() 146 ((skt->status&SS_BATWARN)? 0x0020 : 0)| in sharpsl_pcmcia_configure_socket() 147 ((skt->status&SS_STSCHG) ? 0x0010 : 0)| in sharpsl_pcmcia_configure_socket() 148 ((skt->status&SS_WRPROT) ? 0x0008 : 0); in sharpsl_pcmcia_configure_socket()
|
/kernel/linux/linux-6.6/drivers/pci/hotplug/ |
H A D | shpchp.h | 66 u16 status; member 308 int (*get_power_status)(struct slot *slot, u8 *status); 309 int (*get_attention_status)(struct slot *slot, u8 *status); 310 int (*set_attention_status)(struct slot *slot, u8 status); 311 int (*get_latch_status)(struct slot *slot, u8 *status); 312 int (*get_adapter_status)(struct slot *slot, u8 *status);
|
/kernel/linux/linux-6.6/drivers/pci/ |
H A D | ats.c | 149 * pci_ats_page_aligned - Return Page Aligned Request bit status. 177 u16 status; in pci_pri_init() local 184 pci_read_config_word(pdev, pdev->pri_cap + PCI_PRI_STATUS, &status); in pci_pri_init() 185 if (status & PCI_PRI_STATUS_PASID) in pci_pri_init() 198 u16 control, status; in pci_enable_pri() local 219 pci_read_config_word(pdev, pri + PCI_PRI_STATUS, &status); in pci_enable_pri() 220 if (!(status & PCI_PRI_STATUS_STOPPED)) in pci_enable_pri() 317 * status.
|
/kernel/linux/linux-6.6/drivers/gpu/drm/gma500/ |
H A D | oaktrail_hdmi_i2c.c | 72 int status; member 99 i2c_dev->status = I2C_STAT_INIT; in xfer_read() 109 while (i2c_dev->status != I2C_TRANSACTION_DONE) in xfer_read() 200 i2c_dev->status = I2C_READ_DONE; in hdmi_i2c_read() 219 i2c_dev->status = I2C_TRANSACTION_DONE; in hdmi_i2c_transaction_done() 286 i2c_dev->status = I2C_STAT_INIT; in oaktrail_hdmi_i2c_init()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/bridge/adv7511/ |
H A D | adv7511_cec.c | 52 u8 status; in adv_cec_tx_raw_status() local 59 * We set this status bit since this hardware performs in adv_cec_tx_raw_status() 62 status = CEC_TX_STATUS_MAX_RETRIES; in adv_cec_tx_raw_status() 66 status |= CEC_TX_STATUS_ERROR; in adv_cec_tx_raw_status() 70 status |= CEC_TX_STATUS_NACK; in adv_cec_tx_raw_status() 73 status |= CEC_TX_STATUS_LOW_DRIVE; in adv_cec_tx_raw_status() 75 cec_transmit_done(adv7511->cec_adap, status, in adv_cec_tx_raw_status() 308 /* blocking, clear cec tx irq status */ in adv7511_cec_adap_transmit()
|
/kernel/linux/linux-6.6/drivers/iio/pressure/ |
H A D | mprls0025pa.c | 36 /* bits in i2c status byte */ 176 s32 status; in mpr_read_pressure() local 200 /* wait until status indicates data is ready */ in mpr_read_pressure() 209 status = i2c_smbus_read_byte(data->client); in mpr_read_pressure() 210 if (status < 0) { in mpr_read_pressure() 212 "error while reading, status: %d\n", in mpr_read_pressure() 213 status); in mpr_read_pressure() 214 return status; in mpr_read_pressure() 216 if (!(status & MPR_I2C_BUSY)) in mpr_read_pressure() 238 * it should never be the case that status stil in mpr_read_pressure() [all...] |
/kernel/linux/linux-6.6/drivers/hv/ |
H A D | hv.c | 53 u64 status; in hv_post_message() local 79 status = hv_tdx_hypercall(HVCALL_POST_MESSAGE, in hv_post_message() 82 status = hv_ghcb_hypercall(HVCALL_POST_MESSAGE, in hv_post_message() 86 status = HV_STATUS_INVALID_PARAMETER; in hv_post_message() 88 status = hv_do_hypercall(HVCALL_POST_MESSAGE, in hv_post_message() 94 return hv_result(status); in hv_post_message()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/udl/ |
H A D | udl_main.c | 128 if (urb->status) { in udl_urb_completion() 129 if (!(urb->status == -ENOENT || in udl_urb_completion() 130 urb->status == -ECONNRESET || in udl_urb_completion() 131 urb->status == -EPROTO || in udl_urb_completion() 132 urb->status == -ESHUTDOWN)) { in udl_urb_completion() 133 DRM_ERROR("%s - nonzero write bulk status received: %d\n", in udl_urb_completion() 134 __func__, urb->status); in udl_urb_completion()
|
/kernel/linux/linux-6.6/drivers/hid/ |
H A D | hid-thrustmaster.c | 198 if (urb->status == 0 || urb->status == -EPROTO || urb->status == -EPIPE) in thrustmaster_change_handler() 201 hid_warn(hdev, "URB to change wheel mode seems to have failed with error %d\n", urb->status); in thrustmaster_change_handler() 219 if (urb->status) { in thrustmaster_model_handler() 220 hid_err(hdev, "URB to get model id failed with error %d\n", urb->status); in thrustmaster_model_handler()
|
/kernel/linux/linux-6.6/drivers/iio/light/ |
H A D | jsa1212.c | 120 bool als_en; /* ALS enable status */ 121 bool pxs_en; /* proximity enable status */ 129 /* Enables or disables ALS function based on status */ 130 static int jsa1212_als_enable(struct jsa1212_data *data, u8 status) in jsa1212_als_enable() argument 136 status); in jsa1212_als_enable() 140 data->als_en = !!status; in jsa1212_als_enable() 145 /* Enables or disables PXS function based on status */ 146 static int jsa1212_pxs_enable(struct jsa1212_data *data, u8 status) in jsa1212_pxs_enable() argument 152 status); in jsa1212_pxs_enable() 156 data->pxs_en = !!status; in jsa1212_pxs_enable() [all...] |
/kernel/linux/linux-6.6/drivers/irqchip/ |
H A D | irq-brcmstb-l2.c | 95 u32 status; in brcmstb_l2_intc_irq_handle() local 99 status = irq_reg_readl(b->gc, b->status_offset) & in brcmstb_l2_intc_irq_handle() 102 if (status == 0) { in brcmstb_l2_intc_irq_handle() 110 irq = ffs(status) - 1; in brcmstb_l2_intc_irq_handle() 111 status &= ~(1 << irq); in brcmstb_l2_intc_irq_handle() 113 } while (status); in brcmstb_l2_intc_irq_handle()
|
/kernel/linux/linux-6.6/drivers/input/keyboard/ |
H A D | ep93xx_keypad.c | 87 unsigned int status; in ep93xx_keypad_irq_handler() local 90 status = __raw_readl(keypad->mmio_base + KEY_REG); in ep93xx_keypad_irq_handler() 92 keycode = (status & KEY_REG_KEY1_MASK) >> KEY_REG_KEY1_SHIFT; in ep93xx_keypad_irq_handler() 95 keycode = (status & KEY_REG_KEY2_MASK) >> KEY_REG_KEY2_SHIFT; in ep93xx_keypad_irq_handler() 98 if (status & KEY_REG_2KEYS) { in ep93xx_keypad_irq_handler() 111 } else if (status & KEY_REG_1KEY) { in ep93xx_keypad_irq_handler()
|
/kernel/linux/linux-6.6/drivers/media/dvb-frontends/ |
H A D | as102_fe.c | 301 static int as102_fe_read_status(struct dvb_frontend *fe, enum fe_status *status) in as102_fe_read_status() argument 317 *status = FE_HAS_SIGNAL | FE_HAS_CARRIER; in as102_fe_read_status() 320 *status = FE_HAS_SIGNAL | FE_HAS_CARRIER | FE_HAS_SYNC | in as102_fe_read_status() 324 *status = FE_HAS_SIGNAL | FE_HAS_CARRIER | FE_HAS_SYNC | in as102_fe_read_status() 328 *status = TUNE_STATUS_NOT_TUNED; in as102_fe_read_status() 331 pr_debug("as102: tuner status: 0x%02x, strength %d, per: %d, ber: %d\n", in as102_fe_read_status() 335 if (!(*status & FE_HAS_LOCK)) { in as102_fe_read_status()
|
/kernel/linux/linux-6.6/tools/net/ynl/ |
H A D | ethtool.py | 144 # TODO: --get-plca-status plca-get-status 196 status = 'enabled' if eee['enabled'] else 'disabled' 198 status = status + ' - active' 200 status = status + ' - inactive' 202 status = 'not supported' 204 print(f'EEE status: {status}') [all...] |