Home | History | Annotate | Download | only in sys

Lines Matching refs:int_val

309 	int32 int_val = 0;
346 if (plen >= (int)sizeof(int_val))
347 bcopy(params, &int_val, sizeof(int_val));
349 bool_val = (int_val != 0) ? TRUE : FALSE;
354 int_val = (int32)sd_msglevel;
355 bcopy(&int_val, arg, val_size);
359 sd_msglevel = int_val;
363 if ((uint32)int_val > si->num_funcs) {
367 int_val = (int32)si->client_block_size[int_val];
368 bcopy(&int_val, arg, val_size);
372 int_val = (int32)si->sd_use_dma;
373 bcopy(&int_val, arg, val_size);
377 si->sd_use_dma = (bool)int_val;
381 int_val = (int32)si->use_client_ints;
382 bcopy(&int_val, arg, val_size);
389 int_val = (uint32)sd_divisor;
390 bcopy(&int_val, arg, val_size);
394 sd_divisor = int_val;
402 int_val = (uint32)sd_power;
403 bcopy(&int_val, arg, val_size);
407 sd_power = int_val;
411 int_val = (uint32)sd_clock;
412 bcopy(&int_val, arg, val_size);
416 sd_clock = int_val;
420 int_val = (uint32)sd_sdmode;
421 bcopy(&int_val, arg, val_size);
425 sd_sdmode = int_val;
429 int_val = (uint32)sd_hiok;
430 bcopy(&int_val, arg, val_size);
434 sd_hiok = int_val;
445 int_val = (int32)si->intrcount;
446 bcopy(&int_val, arg, val_size);
450 int_val = (int32)si->local_intrcount;
451 bcopy(&int_val, arg, val_size);
463 int_val = (int)data;
464 bcopy(&int_val, arg, sizeof(int_val));
494 int_val = (int32)si->resp_delay_all;
495 bcopy(&int_val, arg, val_size);
499 si->resp_delay_all = (bool)int_val;
500 int_val = STATUS_ENABLE|INTR_WITH_STATUS;
502 int_val |= RESP_DELAY_ALL;
512 if (bcmspi_card_regwrite(si, SPI_FUNC_0, SPID_STATUS_ENABLE, 1, int_val)