Searched refs:ready (Results 1 - 25 of 96) sorted by relevance

1234

/drivers/block/paride/
H A Dpseudo.h11 int (*ready)(void),
15 Which will arrange for ready() to be evaluated frequently and
51 int (*ready)(void),
59 ps_ready = ready;
50 ps_set_intr(void (*continuation)(void), int (*ready)(void), int timeout, int nice) argument
/drivers/video/
H A Dpxa3xx-gcu.c112 struct pxa3xx_gcu_batch *ready; member in struct:pxa3xx_gcu_priv
220 struct pxa3xx_gcu_batch *ready = priv->ready; local
224 BUG_ON(!ready);
228 while (ready) {
230 shared->buffer[num++] = ready->phys;
231 ready = ready->next;
235 priv->running = priv->ready;
236 priv->ready
[all...]
/drivers/hid/
H A Dhid-wiimote.h59 struct completion ready; member in struct:wiimote_state
173 complete(&wdata->state.ready);
185 INIT_COMPLETION(wdata->state.ready);
199 ret = wait_for_completion_interruptible_timeout(&wdata->state.ready, HZ);
/drivers/net/wireless/ath/ath9k/
H A Dbtcoex.h70 bool ready; member in struct:ath9k_hw_mci
H A Dar9003_mci.c332 mci->ready = false;
509 if (!mci_hw->ready)
728 if (!mci_hw->ready)
918 mci->ready = true;
931 if (mci_hw->ready && !save_fullsleep) {
938 mci_hw->ready = false;
1185 if (mci->ready) {
/drivers/char/ipmi/
H A Dipmi_poweroff.c61 static int ready; variable
549 if (!ready)
565 if (ready)
636 ready = 1;
641 if (!ready)
647 ready = 0;
735 if (ready) {
/drivers/pcmcia/
H A Dpxa2xx_balloon3.c79 state->ready = !!(status & BALLOON3_CF_nIRQ);
H A Dsoc_common.h77 ready: 1, member in struct:pcmcia_state
H A Dpxa2xx_trizeps4.c34 /* we dont have voltage/card/ready detection
84 state->ready = 0;
H A Dsa1111_generic.c74 state->ready = status & PCSR_S0_READY ? 1 : 0;
84 state->ready = status & PCSR_S1_READY ? 1 : 0;
H A Dpxa2xx_colibri.c84 state->ready = !!gpio_get_value(colibri_pcmcia_gpios[READY].gpio);
H A Dpxa2xx_mainstone.c81 state->ready = (status & MST_PCMCIA_nIRQ) ? 1 : 0;
/drivers/uwb/
H A Dlc-rc.c285 rc->ready = 1;
312 rc->ready = 0;
347 if (rc->ready == 0)
383 if (rc->ready == 0)
/drivers/parisc/
H A Dpdc_stable.c101 short ready; /* entry record is valid if != 0 */ member in struct:pdcspath_entry
117 .ready = 0, \
173 entry->ready = 1;
201 /* We expect the caller to set the ready flag to 0 if the hardware
204 if (!entry->ready) {
223 entry->ready = 2;
247 i = entry->ready;
250 if (!i) /* entry is not ready */
329 entry->ready = 0;
367 i = entry->ready;
[all...]
/drivers/media/video/
H A Domap1_camera.c172 struct omap1_cam_buf *ready; member in struct:omap1_cam_dev
360 * If there is already a buffer pointed out by the pcdev->ready,
363 buf = pcdev->ready;
370 pcdev->ready = buf;
503 * Capture in progress, so don't touch pcdev->ready even if
513 WARN_ON(pcdev->ready);
520 pcdev->ready = NULL;
589 if (!pcdev->ready && result != VIDEOBUF_ERROR) {
610 buf = pcdev->ready;
612 pcdev->ready
[all...]
/drivers/mtd/nand/
H A Dnuc900_nand.c145 int ready; local
149 ready = (nuc900_check_rb(nand)) ? 1 : 0;
150 return ready;
/drivers/input/
H A Dmousedev.c106 unsigned char ready, buffer, bufsiz; member in struct:mousedev_client
284 if (client->ready && p->buttons != mousedev->packet.buttons) {
313 client->ready = 1;
317 if (client->ready) {
637 client->ready = 0;
739 if (!client->ready && !client->buffer && mousedev->exist &&
744 !mousedev->exist || client->ready || client->buffer);
753 if (!client->buffer && client->ready) {
782 if (client->ready || client->buffer)
/drivers/scsi/
H A Dst.h139 unsigned char ready; member in struct:scsi_tape
197 /* Values of ready state */
/drivers/gpu/drm/radeon/
H A Dradeon_ring.c188 if (!ib->length_dw || !ring->ready) {
219 if (rdev->ib_pool.ready) {
234 rdev->ib_pool.ready = true;
235 DRM_INFO("radeon: ib pool ready.\n");
252 if (rdev->ib_pool.ready) {
258 rdev->ib_pool.ready = false;
H A Dradeon_test.c458 if (!ringA->ready)
463 if (!ringB->ready)
474 if (!ringC->ready)
H A Dradeon_gart.c152 if (!rdev->gart.ready) {
183 if (!rdev->gart.ready) {
267 if (rdev->gart.pages && rdev->gart.pages_addr && rdev->gart.ready) {
271 rdev->gart.ready = false;
/drivers/net/irda/
H A Dvlsi_ir.c870 struct timeval now, ready; local
951 ready.tv_usec = idev->last_rx.tv_usec + mtt;
952 ready.tv_sec = idev->last_rx.tv_sec;
953 if (ready.tv_usec >= 1000000) {
954 ready.tv_usec -= 1000000;
955 ready.tv_sec++; /* IrLAP 1.1: mtt always < 1 sec */
959 if (now.tv_sec > ready.tv_sec ||
960 (now.tv_sec==ready.tv_sec && now.tv_usec>=ready.tv_usec))
/drivers/staging/ramster/cluster/
H A Dtcp.c603 void (*ready)(struct sock *sk, int bytes);
611 ready = sc->sc_data_ready;
613 ready = sk->sk_data_ready;
617 ready(sk, bytes);
671 /* accepted sockets inherit the old listen socket data ready */
1567 /* this work func is triggerd by data ready. it reads until it can read no
2059 void (*ready)(struct sock *sk, int bytes);
2062 ready = sk->sk_user_data;
2063 if (ready == NULL) { /* check for teardown race */
2064 ready
[all...]
/drivers/scsi/qla4xxx/
H A Dql4_init.c283 int ready = 0; local
312 /* Go back and test for ready state - no wait. */
330 * is in ready state or not after 15 secs.
359 /* The firmware is ready to process SCSI
387 ready = 1;
412 ready = 1;
417 ready = 1;
420 return ready;
/drivers/staging/media/cxd2099/
H A Dcxd2099.c51 int ready; member in struct:cxd
514 ci->ready = 0;
531 if (ci->ready)
601 ci->ready = 0;
605 ci->ready = 1;

Completed in 5705 milliseconds

1234