Lines Matching defs:address
412 static int write_block(struct drxk_state *state, u32 address,
427 if (DRXDAP_FASI_LONG_FORMAT(address) || (flags != 0)) {
428 adr_buf[0] = (((address << 1) & 0xFF) | 0x01);
429 adr_buf[1] = ((address >> 16) & 0xFF);
430 adr_buf[2] = ((address >> 24) & 0xFF);
431 adr_buf[3] = ((address >> 7) & 0xFF);
437 adr_buf[0] = ((address << 1) & 0xFF);
438 adr_buf[1] = (((address >> 16) & 0x0F) |
439 ((address >> 18) & 0xF0));
443 dprintk(2, "(0x%08x, 0x%02x)\n", address, flags);
455 __func__, address);
459 address += (chunk >> 1);
1297 u32 address;
1318 address = (p_src[0] << 24) | (p_src[1] << 16) |
1346 status = write_block(state, address, block_size, p_src);