On 8/18/2017 6:45 AM, Chris Lew wrote:
@@ -782,7 +855,10 @@ static int qcom_smem_probe(struct platform_device *pdev) }version = qcom_smem_get_sbl_version(smem);- if (version >> 16 != SMEM_EXPECTED_VERSION) { + switch (version >> 16) { + case SMEM_GLOBAL_PART_VERSION: + case SMEM_GLOBAL_HEAP_VERSION:
break statement is needed for supported versions
+ default: dev_err(&pdev->dev, "Unsupported SMEM version 0x%x\n", version); return -EINVAL; }