perf tools: Address python 3.6 DeprecationWarning for string scapes
[platform/kernel/linux-starfive.git] / drivers / mfd / hi6421-pmic-core.c
index cb5cf4a..a6a8905 100644 (file)
@@ -59,7 +59,7 @@ static int hi6421_pmic_probe(struct platform_device *pdev)
        id = of_match_device(of_hi6421_pmic_match, &pdev->dev);
        if (!id)
                return -EINVAL;
-       type = (enum hi6421_type)id->data;
+       type = (uintptr_t)id->data;
 
        pmic = devm_kzalloc(&pdev->dev, sizeof(*pmic), GFP_KERNEL);
        if (!pmic)