diff options
| -rw-r--r-- | drivers/clocksource/sh_cmt.c | 10 | ||||
| -rw-r--r-- | drivers/clocksource/sh_mtu2.c | 10 | ||||
| -rw-r--r-- | drivers/clocksource/sh_tmu.c | 10 | ||||
| -rw-r--r-- | include/linux/sh_timer.h | 1 |
4 files changed, 9 insertions, 22 deletions
diff --git a/drivers/clocksource/sh_cmt.c b/drivers/clocksource/sh_cmt.c index a44611652282..d68d3aa1814b 100644 --- a/drivers/clocksource/sh_cmt.c +++ b/drivers/clocksource/sh_cmt.c | |||
| @@ -616,13 +616,9 @@ static int sh_cmt_setup(struct sh_cmt_priv *p, struct platform_device *pdev) | |||
| 616 | /* get hold of clock */ | 616 | /* get hold of clock */ |
| 617 | p->clk = clk_get(&p->pdev->dev, "cmt_fck"); | 617 | p->clk = clk_get(&p->pdev->dev, "cmt_fck"); |
| 618 | if (IS_ERR(p->clk)) { | 618 | if (IS_ERR(p->clk)) { |
| 619 | dev_warn(&p->pdev->dev, "using deprecated clock lookup\n"); | 619 | dev_err(&p->pdev->dev, "cannot get clock\n"); |
| 620 | p->clk = clk_get(&p->pdev->dev, cfg->clk); | 620 | ret = PTR_ERR(p->clk); |
| 621 | if (IS_ERR(p->clk)) { | 621 | goto err1; |
| 622 | dev_err(&p->pdev->dev, "cannot get clock\n"); | ||
| 623 | ret = PTR_ERR(p->clk); | ||
| 624 | goto err1; | ||
| 625 | } | ||
| 626 | } | 622 | } |
| 627 | 623 | ||
| 628 | if (resource_size(res) == 6) { | 624 | if (resource_size(res) == 6) { |
diff --git a/drivers/clocksource/sh_mtu2.c b/drivers/clocksource/sh_mtu2.c index ef7a5be8a09f..40630cb98237 100644 --- a/drivers/clocksource/sh_mtu2.c +++ b/drivers/clocksource/sh_mtu2.c | |||
| @@ -287,13 +287,9 @@ static int sh_mtu2_setup(struct sh_mtu2_priv *p, struct platform_device *pdev) | |||
| 287 | /* get hold of clock */ | 287 | /* get hold of clock */ |
| 288 | p->clk = clk_get(&p->pdev->dev, "mtu2_fck"); | 288 | p->clk = clk_get(&p->pdev->dev, "mtu2_fck"); |
| 289 | if (IS_ERR(p->clk)) { | 289 | if (IS_ERR(p->clk)) { |
| 290 | dev_warn(&p->pdev->dev, "using deprecated clock lookup\n"); | 290 | dev_err(&p->pdev->dev, "cannot get clock\n"); |
| 291 | p->clk = clk_get(&p->pdev->dev, cfg->clk); | 291 | ret = PTR_ERR(p->clk); |
| 292 | if (IS_ERR(p->clk)) { | 292 | goto err1; |
| 293 | dev_err(&p->pdev->dev, "cannot get clock\n"); | ||
| 294 | ret = PTR_ERR(p->clk); | ||
| 295 | goto err1; | ||
| 296 | } | ||
| 297 | } | 293 | } |
| 298 | 294 | ||
| 299 | return sh_mtu2_register(p, (char *)dev_name(&p->pdev->dev), | 295 | return sh_mtu2_register(p, (char *)dev_name(&p->pdev->dev), |
diff --git a/drivers/clocksource/sh_tmu.c b/drivers/clocksource/sh_tmu.c index de715901b82a..36aba9923060 100644 --- a/drivers/clocksource/sh_tmu.c +++ b/drivers/clocksource/sh_tmu.c | |||
| @@ -393,13 +393,9 @@ static int sh_tmu_setup(struct sh_tmu_priv *p, struct platform_device *pdev) | |||
| 393 | /* get hold of clock */ | 393 | /* get hold of clock */ |
| 394 | p->clk = clk_get(&p->pdev->dev, "tmu_fck"); | 394 | p->clk = clk_get(&p->pdev->dev, "tmu_fck"); |
| 395 | if (IS_ERR(p->clk)) { | 395 | if (IS_ERR(p->clk)) { |
| 396 | dev_warn(&p->pdev->dev, "using deprecated clock lookup\n"); | 396 | dev_err(&p->pdev->dev, "cannot get clock\n"); |
| 397 | p->clk = clk_get(&p->pdev->dev, cfg->clk); | 397 | ret = PTR_ERR(p->clk); |
| 398 | if (IS_ERR(p->clk)) { | 398 | goto err1; |
| 399 | dev_err(&p->pdev->dev, "cannot get clock\n"); | ||
| 400 | ret = PTR_ERR(p->clk); | ||
| 401 | goto err1; | ||
| 402 | } | ||
| 403 | } | 399 | } |
| 404 | 400 | ||
| 405 | return sh_tmu_register(p, (char *)dev_name(&p->pdev->dev), | 401 | return sh_tmu_register(p, (char *)dev_name(&p->pdev->dev), |
diff --git a/include/linux/sh_timer.h b/include/linux/sh_timer.h index 864bd56bd3b0..4d9dcd138315 100644 --- a/include/linux/sh_timer.h +++ b/include/linux/sh_timer.h | |||
| @@ -5,7 +5,6 @@ struct sh_timer_config { | |||
| 5 | char *name; | 5 | char *name; |
| 6 | long channel_offset; | 6 | long channel_offset; |
| 7 | int timer_bit; | 7 | int timer_bit; |
| 8 | char *clk; | ||
| 9 | unsigned long clockevent_rating; | 8 | unsigned long clockevent_rating; |
| 10 | unsigned long clocksource_rating; | 9 | unsigned long clocksource_rating; |
| 11 | }; | 10 | }; |
