Searched refs:status1 (Results 1 - 25 of 46) sorted by path

12

/linux-master/drivers/net/wireless/ath/ath9k/
H A Dar9003_mac.h57 u32 status1; member in struct:ar9003_rxs
101 u32 status1; member in struct:ar9003_txs
H A Dar9003_mac.c382 ts->desc_id = MS(ads->status1, AR_TxDescId);
506 rxs->rs_rssi_ctl[0] = MS(rxsp->status1, AR_RxRSSIAnt00);
507 rxs->rs_rssi_ctl[1] = MS(rxsp->status1, AR_RxRSSIAnt01);
508 rxs->rs_rssi_ctl[2] = MS(rxsp->status1, AR_RxRSSIAnt02);
518 rxs->rs_rate = MS(rxsp->status1, AR_RxRate);
H A Dmac.h294 u32 status1; member in struct:ar5416_desc::__anon1766::__anon1767
306 u32 status1; member in struct:ar5416_desc::__anon1766::__anon1768
333 #define ds_txstatus1 u.tx.status1
344 #define ds_rxstatus1 u.rx.status1
/linux-master/drivers/net/wireless/broadcom/brcm80211/brcmsmac/
H A Ddma.h52 u32 status1; /* active descriptor, xmt error */ member in struct:dma64regs
H A Ddma.c1497 DMA64TXREGOFFS(di, status1)) &
/linux-master/arch/powerpc/platforms/powermac/
H A Dfeature.c1158 u32 status0, status1; local
1184 status1 = UN_IN(UNI_N_CLOCK_STOP_STATUS1);
1185 } while ((status0 & test0) | (status1 & test1));
/linux-master/arch/x86/math-emu/
H A Dfpu_entry.c265 unsigned short status1 = partial_status; local
323 partial_status = status1;
382 status1 &
435 partial_status = status1; /* Undo any denorm tag,
/linux-master/drivers/comedi/drivers/
H A Dni_mio_common.c3783 unsigned int status1; local
3790 status1 = ni_stc_readw(dev, NISTC_STATUS1_REG);
3791 if (status1 & NISTC_STATUS1_SERIO_IN_PROG) {
3801 while ((status1 = ni_stc_readw(dev, NISTC_STATUS1_REG)) &
/linux-master/drivers/hid/
H A Dhid-cp2112.c127 u8 status1; /* STATUS1_* */ member in struct:cp2112_xfer_status_report
1376 xfer->status0, xfer->status1,
1390 switch (xfer->status1) {
H A Dwacom_sys.c1115 DEVICE_LUMINANCE_ATTR(status1, hlv);
/linux-master/drivers/iio/accel/
H A Dadxl372.c575 u8 *status1, u8 *status2,
590 *status1 = (val >> 24) & 0x0F;
639 u8 status1, status2; local
643 ret = adxl372_get_status(st, &status1, &status2, &fifo_entries);
650 ADXL372_STATUS_1_FIFO_FULL(status1)) {
574 adxl372_get_status(struct adxl372_state *st, u8 *status1, u8 *status2, u16 *fifo_entries) argument
/linux-master/drivers/iio/adc/
H A Dqcom-spmi-adc5.c201 u8 status1; local
205 ret = adc5_read(adc, ADC5_USR_STATUS1, &status1,
206 sizeof(status1));
210 status1 &= ADC5_USR_STATUS1_REQ_STS_EOC_MASK;
211 if (status1 == ADC5_USR_STATUS1_EOC)
/linux-master/drivers/mailbox/
H A Dbcm-pdc-mailbox.c179 u32 status1; /* driver does not use */ member in struct:dma64_regs
/linux-master/drivers/media/dvb-frontends/
H A Dbcm3510.c62 struct bcm3510_hab_cmd_status1 status1; member in struct:bcm3510_state
285 bcm3510_do_hab_cmd(st, CMD_STATUS, MSGID_STATUS1, NULL,0, (u8 *)&st->status1, sizeof(st->status1));
298 if (st->status1.STATUS1.RECEIVER_LOCK)
301 if (st->status1.STATUS1.FEC_LOCK)
304 if (st->status1.STATUS1.OUT_PLL_LOCK)
358 *snr = st->status1.SNR_EST0*1000 + ((st->status1.SNR_EST1*1000) >> 8);
575 memset(&st->status1,0,sizeof(st->status1));
[all...]
/linux-master/drivers/media/i2c/
H A Dadv7180.c276 static v4l2_std_id adv7180_std_to_v4l2(u8 status1) argument
279 if (!(status1 & ADV7180_STATUS1_IN_LOCK))
282 switch (status1 & ADV7180_STATUS1_AUTOD_MASK) {
327 static u32 adv7180_status_to_v4l2(u8 status1) argument
329 if (!(status1 & ADV7180_STATUS1_IN_LOCK))
338 int status1 = adv7180_read(state, ADV7180_REG_STATUS1); local
340 if (status1 < 0)
341 return status1;
344 *status = adv7180_status_to_v4l2(status1);
346 *std = adv7180_std_to_v4l2(status1);
[all...]
/linux-master/drivers/media/pci/zoran/
H A Dzr36050.c74 ptr->status1 = zr36050_read(ptr, ZR050_STATUS_1);
77 return ptr->status1;
107 ptr->name, ptr->status1);
142 if ((ptr->status1 & 0x4) == 0) {
431 ptr->name, ptr->status1);
433 if ((ptr->status1 & 0x4) == 0) {
500 ptr->name, ptr->status1);
502 if ((ptr->status1 & 0x4) == 0) {
600 *ival = ptr->status1;
H A Dzr36050.h20 __u8 status1; member in struct:zr36050
/linux-master/drivers/media/platform/qcom/camss/
H A Dcamss-vfe-170.c317 static void vfe_isr_read(struct vfe_device *vfe, u32 *status0, u32 *status1) argument
320 *status1 = readl_relaxed(vfe->base + VFE_IRQ_STATUS_1);
323 writel_relaxed(*status1, vfe->base + VFE_IRQ_CLEAR_1);
347 u32 status0, status1, vfe_bus_status[VFE_LINE_NUM_MAX]; local
351 status1 = readl_relaxed(vfe->base + VFE_IRQ_STATUS_1);
354 writel_relaxed(status1, vfe->base + VFE_IRQ_CLEAR_1);
/linux-master/drivers/memstick/core/
H A Dms_block.c447 if (msb->regs.status.status1 & MEMSTICK_UNCORR_ERROR) {
452 if (msb->regs.status.status1 & MEMSTICK_CORR_ERROR) {
/linux-master/drivers/mmc/host/
H A Dwmt-sdmmc.c373 u32 status1; local
381 status1 = readb(priv->sdmmc_base + SDMMC_STS1);
403 if (status1 & STS1_CMDRSP_DONE) {
406 } else if ((status1 & STS1_RSP_TIMEOUT) ||
407 (status1 & STS1_DATA_TIMEOUT)) {
424 if (status1 & STS1_CMDRSP_DONE) {
431 if ((status1 & STS1_RSP_TIMEOUT) ||
432 (status1 & STS1_DATA_TIMEOUT)) {
455 writeb(status1, priv->sdmmc_base + SDMMC_STS1);
/linux-master/drivers/net/ethernet/adi/
H A Dadin1110.c555 u32 status1; local
559 ret = adin1110_read_reg(priv, ADIN1110_STATUS1, &status1);
563 if (!adin1110_port_rx_ready(port_priv, status1))
585 u32 status1; local
592 ret = adin1110_read_reg(priv, ADIN1110_STATUS1, &status1);
596 if (priv->append_crc && (status1 & ADIN1110_SPI_ERR))
608 if (adin1110_port_rx_ready(priv->ports[i], status1))
/linux-master/drivers/net/ethernet/packetengines/
H A Dyellowfin.c1103 u8 status1 = buf_addr[data_size-2]; local
1106 if (status1 & 0xC0) dev->stats.rx_length_errors++;
/linux-master/drivers/net/hamradio/
H A D6pack.c117 unsigned char status1; member in struct:sixpack
148 if (((sp->status1 & SIXP_DCD_MASK) == 0) && (random < sp->persistence)) {
511 sp->status1 = 1;
607 sp->status1 = 1;
896 sp->status1 = cmd & SIXP_PRIO_DATA_MASK;
/linux-master/drivers/net/wireless/ath/wcn36xx/
H A Dhal.h4110 u32 status1; member in struct:aggr_add_ts_rsp_msg
/linux-master/drivers/platform/x86/
H A Dcompal-laptop.c493 u8 status1 = ec_read_u8(BAT_STATUS1); local
499 if (status1 & BAT_S1_FULL)
537 u8 status1 = ec_read_u8(BAT_STATUS1); local
541 || status1 & BAT_S1_EMPTY
546 if (status1 & BAT_S1_FULL)

Completed in 435 milliseconds

12