|
@@ -350,8 +350,8 @@ static unsigned int gpmc_ps_to_ticks(unsigned int time_ps)
|
|
|
return (time_ps + tick_ps - 1) / tick_ps;
|
|
|
}
|
|
|
|
|
|
-unsigned int gpmc_clk_ticks_to_ns(unsigned ticks, int cs,
|
|
|
- enum gpmc_clk_domain cd)
|
|
|
+static unsigned int gpmc_clk_ticks_to_ns(unsigned int ticks, int cs,
|
|
|
+ enum gpmc_clk_domain cd)
|
|
|
{
|
|
|
return ticks * gpmc_get_clk_period(cs, cd) / 1000;
|
|
|
}
|
|
@@ -2143,9 +2143,7 @@ err_child_fail:
|
|
|
ret = -ENODEV;
|
|
|
|
|
|
err_cs:
|
|
|
- if (waitpin_desc)
|
|
|
- gpiochip_free_own_desc(waitpin_desc);
|
|
|
-
|
|
|
+ gpiochip_free_own_desc(waitpin_desc);
|
|
|
err:
|
|
|
gpmc_cs_free(cs);
|
|
|
|
|
@@ -2266,7 +2264,7 @@ static int gpmc_gpio_init(struct gpmc_device *gpmc)
|
|
|
gpmc->gpio_chip.get = gpmc_gpio_get;
|
|
|
gpmc->gpio_chip.base = -1;
|
|
|
|
|
|
- ret = gpiochip_add(&gpmc->gpio_chip);
|
|
|
+ ret = devm_gpiochip_add_data(gpmc->dev, &gpmc->gpio_chip, NULL);
|
|
|
if (ret < 0) {
|
|
|
dev_err(gpmc->dev, "could not register gpio chip: %d\n", ret);
|
|
|
return ret;
|
|
@@ -2275,11 +2273,6 @@ static int gpmc_gpio_init(struct gpmc_device *gpmc)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static void gpmc_gpio_exit(struct gpmc_device *gpmc)
|
|
|
-{
|
|
|
- gpiochip_remove(&gpmc->gpio_chip);
|
|
|
-}
|
|
|
-
|
|
|
static int gpmc_probe(struct platform_device *pdev)
|
|
|
{
|
|
|
int rc;
|
|
@@ -2366,7 +2359,7 @@ static int gpmc_probe(struct platform_device *pdev)
|
|
|
rc = gpmc_setup_irq(gpmc);
|
|
|
if (rc) {
|
|
|
dev_err(gpmc->dev, "gpmc_setup_irq failed\n");
|
|
|
- goto setup_irq_failed;
|
|
|
+ goto gpio_init_failed;
|
|
|
}
|
|
|
|
|
|
rc = gpmc_probe_dt_children(pdev);
|
|
@@ -2379,8 +2372,6 @@ static int gpmc_probe(struct platform_device *pdev)
|
|
|
|
|
|
dt_children_failed:
|
|
|
gpmc_free_irq(gpmc);
|
|
|
-setup_irq_failed:
|
|
|
- gpmc_gpio_exit(gpmc);
|
|
|
gpio_init_failed:
|
|
|
gpmc_mem_exit();
|
|
|
pm_runtime_put_sync(&pdev->dev);
|
|
@@ -2394,7 +2385,6 @@ static int gpmc_remove(struct platform_device *pdev)
|
|
|
struct gpmc_device *gpmc = platform_get_drvdata(pdev);
|
|
|
|
|
|
gpmc_free_irq(gpmc);
|
|
|
- gpmc_gpio_exit(gpmc);
|
|
|
gpmc_mem_exit();
|
|
|
pm_runtime_put_sync(&pdev->dev);
|
|
|
pm_runtime_disable(&pdev->dev);
|