thermal/drivers/exynos: Drop id field
authorMateusz Majewski <m.majewski2@samsung.com>
Fri, 1 Dec 2023 09:56:18 +0000 (10:56 +0100)
committerDaniel Lezcano <daniel.lezcano@linaro.org>
Tue, 2 Jan 2024 08:33:19 +0000 (09:33 +0100)
We do not use the value, and only Exynos 7 defines this alias anyway.

Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Signed-off-by: Mateusz Majewski <m.majewski2@samsung.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Link: https://lore.kernel.org/r/20231201095625.301884-3-m.majewski2@samsung.com
drivers/thermal/samsung/exynos_tmu.c

index 187086658e8f0f7e8047803a952ff56a5cc3edb0..4ff32245d2a986e6957589aa31464d99886913d7 100644 (file)
@@ -138,7 +138,6 @@ enum soc_type {
 /**
  * struct exynos_tmu_data : A structure to hold the private data of the TMU
  *                         driver
- * @id: identifier of the one instance of the TMU controller.
  * @base: base address of the single instance of the TMU controller.
  * @base_second: base address of the common registers of the TMU controller.
  * @irq: irq number of the TMU controller.
@@ -172,7 +171,6 @@ enum soc_type {
  * @tmu_clear_irqs: SoC specific TMU interrupts clearing method
  */
 struct exynos_tmu_data {
-       int id;
        void __iomem *base;
        void __iomem *base_second;
        int irq;
@@ -865,10 +863,6 @@ static int exynos_map_dt_data(struct platform_device *pdev)
        if (!data || !pdev->dev.of_node)
                return -ENODEV;
 
-       data->id = of_alias_get_id(pdev->dev.of_node, "tmuctrl");
-       if (data->id < 0)
-               data->id = 0;
-
        data->irq = irq_of_parse_and_map(pdev->dev.of_node, 0);
        if (data->irq <= 0) {
                dev_err(&pdev->dev, "failed to get IRQ\n");