summaryrefslogtreecommitdiffstats
path: root/drivers/soc/qcom
diff options
context:
space:
mode:
authorAlex Elder2018-06-26 02:58:48 +0200
committerAndy Gross2018-09-13 23:56:56 +0200
commiteb68cf09092233716b31fad42cf2a4dad3959e3c (patch)
tree886cd6ec3910d47d533970f9caad2ce944f897a9 /drivers/soc/qcom
parentsoc: qcom: smem: always ignore partitions with 0 offset or size (diff)
downloadkernel-qcow2-linux-eb68cf09092233716b31fad42cf2a4dad3959e3c.tar.gz
kernel-qcow2-linux-eb68cf09092233716b31fad42cf2a4dad3959e3c.tar.xz
kernel-qcow2-linux-eb68cf09092233716b31fad42cf2a4dad3959e3c.zip
soc: qcom: smem: small refactor in qcom_smem_enumerate_partitions()
Combine the code that checks whether a partition table entry is associated with the local host with the assignment of the remote host id value. Signed-off-by: Alex Elder <elder@linaro.org> Signed-off-by: Andy Gross <andy.gross@linaro.org>
Diffstat (limited to 'drivers/soc/qcom')
-rw-r--r--drivers/soc/qcom/smem.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/soc/qcom/smem.c b/drivers/soc/qcom/smem.c
index 9378bee4d7d6..8d2582c99808 100644
--- a/drivers/soc/qcom/smem.c
+++ b/drivers/soc/qcom/smem.c
@@ -816,13 +816,12 @@ static int qcom_smem_enumerate_partitions(struct qcom_smem *smem,
host0 = le16_to_cpu(entry->host0);
host1 = le16_to_cpu(entry->host1);
- if (host0 != local_host && host1 != local_host)
- continue;
-
if (host0 == local_host)
remote_host = host1;
- else
+ else if (host1 == local_host)
remote_host = host0;
+ else
+ continue;
if (remote_host >= SMEM_HOST_COUNT) {
dev_err(smem->dev,