Commit 63995d46 authored by Marcin Slusarz's avatar Marcin Slusarz Committed by Stefan Richter

ieee1394: be*_add_cpu conversion

replace all:
big_endian_variable = cpu_to_beX(beX_to_cpu(big_endian_variable) +
					expression_in_cpu_byteorder);
with:
	beX_add_cpu(&big_endian_variable, expression_in_cpu_byteorder);
generated with semantic patch
Signed-off-by: default avatarMarcin Slusarz <marcin.slusarz@gmail.com>
Signed-off-by: default avatarStefan Richter <stefanr@s5r6.in-berlin.de>
parent a4b47d62
...@@ -133,8 +133,7 @@ static void host_reset(struct hpsb_host *host) ...@@ -133,8 +133,7 @@ static void host_reset(struct hpsb_host *host)
host->csr.state &= ~0x100; host->csr.state &= ~0x100;
} }
host->csr.topology_map[1] = be32_add_cpu(&host->csr.topology_map[1], 1);
cpu_to_be32(be32_to_cpu(host->csr.topology_map[1]) + 1);
host->csr.topology_map[2] = cpu_to_be32(host->node_count << 16 host->csr.topology_map[2] = cpu_to_be32(host->node_count << 16
| host->selfid_count); | host->selfid_count);
host->csr.topology_map[0] = host->csr.topology_map[0] =
...@@ -142,8 +141,7 @@ static void host_reset(struct hpsb_host *host) ...@@ -142,8 +141,7 @@ static void host_reset(struct hpsb_host *host)
| csr_crc16(host->csr.topology_map + 1, | csr_crc16(host->csr.topology_map + 1,
host->selfid_count + 2)); host->selfid_count + 2));
host->csr.speed_map[1] = be32_add_cpu(&host->csr.speed_map[1], 1);
cpu_to_be32(be32_to_cpu(host->csr.speed_map[1]) + 1);
host->csr.speed_map[0] = cpu_to_be32(0x3f1 << 16 host->csr.speed_map[0] = cpu_to_be32(0x3f1 << 16
| csr_crc16(host->csr.speed_map+1, | csr_crc16(host->csr.speed_map+1,
0x3f1)); 0x3f1));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment