Searched refs:status (Results 651 - 675 of 7076) sorted by relevance

<<21222324252627282930>>

/linux-master/drivers/net/ethernet/microchip/sparx5/
H A Dsparx5_phylink.c84 struct sparx5_port_status status; local
86 sparx5_get_port_status(port->sparx5, port, &status);
87 state->link = status.link && !status.link_down;
88 state->an_complete = status.an_complete;
89 state->speed = status.speed;
90 state->duplex = status.duplex;
91 state->pause = status.pause;
/linux-master/tools/perf/util/
H A Ddemangle-cxx.cpp42 int status;
44 output = abi::__cxa_demangle(str, /*output_buffer=*/NULL, /*length=*/NULL, &status);
/linux-master/drivers/char/tpm/
H A Dtpm_i2c_atmel.c15 * TGC status/locality/etc functions seen in the LPC implementation do not
44 s32 status; local
51 status = i2c_master_send(client, buf, len);
55 (int)min_t(size_t, 64, len), buf, len, status);
57 if (status < 0)
58 return status;
61 if (status != len)
133 static bool i2c_atmel_req_canceled(struct tpm_chip *chip, u8 status) argument
140 .status = i2c_atmel_read_status,
/linux-master/drivers/cpufreq/
H A Dpcc-cpufreq.c84 u16 status; member in struct:pcc_header
129 if (ioread16(&pcch_hdr->status) & CMD_COMPLETE)
146 u16 status; local
168 status = ioread16(&pcch_hdr->status);
169 if (status != CMD_COMPLETE) {
170 pr_debug("get: FAILED: for CPU %d, status is %d\n",
171 cpu, status);
174 iowrite16(0, &pcch_hdr->status);
193 iowrite16(0, &pcch_hdr->status);
204 u16 status; local
251 acpi_status status; local
303 acpi_status status; local
390 acpi_status status; local
[all...]
/linux-master/drivers/media/dvb-frontends/
H A Dtda8261.c51 static int tda8261_get_status(struct dvb_frontend *fe, u32 *status) argument
57 *status = 0;
65 *status = 1;
88 u32 frequency, N, status = 0; local
127 /* check status */
128 if ((err = tda8261_get_status(fe, &status)) < 0) {
132 if (status == 1) {
133 pr_debug("%s: Tuner Phase locked: status=%d\n", __func__,
134 status);
137 pr_debug("%s: No Phase lock: status
[all...]
H A Dsp2_priv.h16 int status; member in struct:sp2
/linux-master/drivers/platform/surface/
H A Dsurface_aggregator_cdev.c140 int status; local
177 status = ssam_notifier_register(client->cdev->ctrl, &nf->nf);
178 if (status)
184 return status;
191 int status; local
208 status = ssam_notifier_unregister(client->cdev->ctrl, &client->notifier[event]->nf);
213 return status;
262 int status = 0, ret = 0, tmp; local
345 status = ssam_request_do_sync(client->cdev->ctrl, &spec, &rsp);
346 if (status)
558 long status; local
580 int status = 0; local
683 int status; local
775 int status; local
[all...]
/linux-master/tools/include/nolibc/
H A Dtypes.h107 /* Macros used on waitpid()'s return status */
108 #define WEXITSTATUS(status) (((status) & 0xff00) >> 8)
109 #define WIFEXITED(status) (((status) & 0x7f) == 0)
110 #define WTERMSIG(status) ((status) & 0x7f)
111 #define WIFSIGNALED(status) ((status) - 1 < 0xff)
198 union { time_t st_ctime; struct timespec st_ctim; }; /* time of last status chang
[all...]
/linux-master/include/uapi/linux/
H A Dsync_file.h42 * @status: status of the fence 0:active 1:signaled <0:error
44 * @timestamp_ns: timestamp of status change in nanoseconds
49 __s32 status; member in struct:sync_fence_info
57 * @status: status of fence. 1: signaled 0:active <0:error
71 __s32 status; member in struct:sync_file_info
/linux-master/include/linux/
H A Dnvme-rdma.h30 static inline const char *nvme_rdma_cm_msg(enum nvme_rdma_cm_status status) argument
32 switch (status) {
86 * @sts: error status for the associated connect request
/linux-master/tools/testing/selftests/arm64/abi/
H A Dtpidr2.c99 int status; local
130 waiting = waitpid(newpid, &status, 0);
145 if (!WIFEXITED(status)) {
155 return WEXITSTATUS(status);
181 int ret, status; local
215 waiting = wait4(ret, &status, __WCLONE, NULL);
232 if (!WIFEXITED(status)) {
242 return WEXITSTATUS(status);
/linux-master/drivers/gpu/drm/i915/gt/uc/
H A Dintel_huc.c96 huc->delayed_load.status = INTEL_HUC_DELAYED_LOAD_ERROR;
111 huc->delayed_load.status = INTEL_HUC_WAITING_ON_PXP;
123 if (huc->delayed_load.status == INTEL_HUC_WAITING_ON_GSC)
125 else if (huc->delayed_load.status == INTEL_HUC_WAITING_ON_PXP)
128 MISSING_CASE(huc->delayed_load.status);
146 switch (huc->delayed_load.status) {
300 huc->status[INTEL_HUC_AUTH_BY_GUC].reg = GEN11_HUC_KERNEL_LOAD_INFO;
301 huc->status[INTEL_HUC_AUTH_BY_GUC].mask = HUC_LOAD_SUCCESSFUL;
302 huc->status[INTEL_HUC_AUTH_BY_GUC].value = HUC_LOAD_SUCCESSFUL;
304 huc->status[INTEL_HUC_AUTH_BY_GU
592 u32 status = 0; local
[all...]
/linux-master/include/drm/bridge/
H A Daux-bridge.h28 void drm_aux_hpd_bridge_notify(struct device *dev, enum drm_connector_status status);
47 static inline void drm_aux_hpd_bridge_notify(struct device *dev, enum drm_connector_status status) argument
/linux-master/drivers/usb/typec/ucsi/
H A Ducsi_ccg.c259 int status; local
271 status = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs));
272 if (status < 0) {
273 dev_err(uc->dev, "i2c_transfer failed %d\n", status);
275 return status;
295 int status; local
308 status = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs));
309 if (status < 0) {
310 dev_err(uc->dev, "i2c_transfer failed %d\n", status);
313 return status;
353 int status; local
787 int status; local
1343 int status; local
1371 int status; local
1422 int status; local
[all...]
/linux-master/sound/firewire/oxfw/
H A Doxfw-scs1x.c141 static bool is_valid_running_status(u8 status) argument
143 return status >= 0x80 && status <= 0xef;
146 static bool is_one_byte_cmd(u8 status) argument
148 return status == 0xf6 ||
149 status >= 0xf8;
152 static bool is_two_bytes_cmd(u8 status) argument
154 return (status >= 0xc0 && status <= 0xdf) ||
155 status
159 is_three_bytes_cmd(u8 status) argument
166 is_invalid_cmd(u8 status) argument
[all...]
/linux-master/drivers/pci/controller/
H A Dpcie-xilinx.c347 u32 val, mask, status; local
353 status = val & mask;
354 if (!status)
357 if (status & XILINX_PCIE_INTR_LINK_DOWN)
360 if (status & XILINX_PCIE_INTR_ECRC_ERR)
363 if (status & XILINX_PCIE_INTR_STR_ERR)
366 if (status & XILINX_PCIE_INTR_HOT_RESET)
369 if (status & XILINX_PCIE_INTR_CFG_TIMEOUT)
372 if (status & XILINX_PCIE_INTR_CORRECTABLE) {
377 if (status
[all...]
/linux-master/drivers/usb/host/
H A Dxhci-pci-renesas.c206 dev_dbg(&pdev->dev, "Unknown ROM status ...\n");
381 u8 status; local
392 retval = pci_read_config_byte(pdev, RENESAS_ROM_STATUS, &status);
394 dev_err(&pdev->dev, "ROM status read failed: %d\n",
398 status |= RENESAS_ROM_STATUS_ERASE;
399 retval = pci_write_config_byte(pdev, RENESAS_ROM_STATUS, status);
410 &status);
411 status &= RENESAS_ROM_STATUS_ERASE;
412 if (!status)
419 dev_dbg(&pdev->dev, "Chip erase timedout: %x\n", status);
428 u8 status; local
[all...]
/linux-master/drivers/gpu/drm/amd/display/dc/link/protocols/
H A Dlink_dp_training_fixed_vs_pe_retimer.c105 enum link_training_result status = LINK_TRAINING_SUCCESS; local
149 for (repeater_id = repeater_cnt; (repeater_id > 0 && status == LINK_TRAINING_SUCCESS);
151 status = perform_8b_10b_clock_recovery_sequence(link, link_res, lt_settings, repeater_id);
153 if (status != LINK_TRAINING_SUCCESS) {
158 status = perform_8b_10b_channel_equalization_sequence(link,
165 if (status != LINK_TRAINING_SUCCESS)
176 if (status == LINK_TRAINING_SUCCESS) {
177 status = perform_8b_10b_clock_recovery_sequence(link, link_res, lt_settings, DPRX);
178 if (status == LINK_TRAINING_SUCCESS) {
179 status
211 enum link_training_result status = LINK_TRAINING_SUCCESS; local
[all...]
/linux-master/drivers/net/ethernet/myricom/myri10ge/
H A Dmyri10ge.c579 int status; local
585 status = -EINVAL;
594 status = -EINVAL;
602 status = -EINVAL;
607 status = myri10ge_validate_firmware(mgp, hdr);
608 if (status != 0)
621 status = -ENOMEM;
631 status = -EIO;
640 return status;
649 int status; local
687 int status; local
715 int status, i; local
803 int status; local
817 int status, ctl; local
834 int status, ctl; local
845 int status; local
918 int i, status; local
1943 int i, slice, status; local
2154 int status; local
2235 int status; local
2269 int status; local
2299 int i, status, big_pow2, slice; local
2476 int status, old_down_cnt; local
2895 netdev_tx_t status; local
3013 int status; local
3138 int status; local
3293 int status; local
3387 int status, rebooted; local
3610 int i, status, ncpus; local
3742 int status = -ENXIO; local
[all...]
/linux-master/drivers/net/ethernet/intel/ice/
H A Dice_flow.c1181 int status = 0; local
1190 status = ice_flow_xtract_fld(hw, params, i, j, match);
1191 if (status)
1192 return status;
1197 status = ice_flow_xtract_raws(hw, params, i);
1198 if (status)
1199 return status;
1202 return status;
1213 int status; local
1215 status
1353 int status; local
1435 int status; local
1478 int status = 0; local
1509 int status = 0; local
1541 int status; local
1577 int status; local
1614 int status; local
1680 int status = 0; local
1819 int status = 0; local
1961 int status = 0; local
2236 int status; local
2339 int status; local
2384 int status; local
2439 int status; local
2510 int status = 0; local
2623 int status = 0; local
2654 int status = 0; local
[all...]
/linux-master/drivers/net/ethernet/intel/ixgbe/
H A Dixgbe_phy.c37 int status; local
39 status = ixgbe_clock_out_i2c_byte(hw, byte);
40 if (status)
41 return status;
54 int status; local
56 status = ixgbe_clock_in_i2c_byte(hw, byte);
57 if (status)
58 return status;
265 u32 status = -EFAULT; local
289 status
339 int status; local
401 int status = 0; local
553 int status; local
651 int status; local
1103 int status = 0; local
1220 int status; local
1260 int status = 0; local
1287 int status; local
1543 int status; local
1820 int status; local
2165 int status; local
2289 int status; local
2473 int status; local
2507 int status = 0; local
2589 int status; local
2778 u32 status; local
2798 u32 status; local
[all...]
/linux-master/drivers/media/pci/cobalt/
H A Dm00389_cvi_memmap_package.h20 uint32_t status; /* Reg 0x0014 */ member in struct:m00389_cvi_regmap
41 /* status [1:0] */
H A Dm00473_freewheel_memmap_package.h16 uint32_t status; /* Reg 0x0004 */ member in struct:m00473_freewheel_regmap
41 /* status [0:0] */
/linux-master/drivers/staging/rtl8192e/rtl8192e/
H A Dr8192E_firmware.h47 enum firmware_status status; member in struct:rt_firmware
/linux-master/drivers/thunderbolt/
H A Ddma_port.h26 int dma_port_flash_update_auth_status(struct tb_dma_port *dma, u32 *status);

Completed in 598 milliseconds

<<21222324252627282930>>