diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2010-06-08 02:25:17 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-08-04 02:51:35 -0400 |
commit | 8a2b6beffc88b83089845d72eed2ed74eb5c9b1e (patch) | |
tree | 502780ddd8d8013b035ca83bcaec6b2e4032edd9 | |
parent | 6e86ccad15c01e2239da9a76cfbfbf41bbe332ba (diff) |
net/irda/sh_irda: Modify clk_get lookups
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
-rw-r--r-- | arch/arm/mach-shmobile/board-g3evm.c | 1 | ||||
-rw-r--r-- | drivers/net/irda/sh_irda.c | 6 |
2 files changed, 3 insertions, 4 deletions
diff --git a/arch/arm/mach-shmobile/board-g3evm.c b/arch/arm/mach-shmobile/board-g3evm.c index 95ccb949d5d9..a5525901e91f 100644 --- a/arch/arm/mach-shmobile/board-g3evm.c +++ b/arch/arm/mach-shmobile/board-g3evm.c | |||
@@ -232,6 +232,7 @@ static struct resource irda_resources[] = { | |||
232 | 232 | ||
233 | static struct platform_device irda_device = { | 233 | static struct platform_device irda_device = { |
234 | .name = "sh_irda", | 234 | .name = "sh_irda", |
235 | .id = -1, | ||
235 | .resource = irda_resources, | 236 | .resource = irda_resources, |
236 | .num_resources = ARRAY_SIZE(irda_resources), | 237 | .num_resources = ARRAY_SIZE(irda_resources), |
237 | }; | 238 | }; |
diff --git a/drivers/net/irda/sh_irda.c b/drivers/net/irda/sh_irda.c index 9a828b06a57e..9db7084bc001 100644 --- a/drivers/net/irda/sh_irda.c +++ b/drivers/net/irda/sh_irda.c | |||
@@ -748,7 +748,6 @@ static int __devinit sh_irda_probe(struct platform_device *pdev) | |||
748 | struct net_device *ndev; | 748 | struct net_device *ndev; |
749 | struct sh_irda_self *self; | 749 | struct sh_irda_self *self; |
750 | struct resource *res; | 750 | struct resource *res; |
751 | char clk_name[8]; | ||
752 | unsigned int irq; | 751 | unsigned int irq; |
753 | int err = -ENOMEM; | 752 | int err = -ENOMEM; |
754 | 753 | ||
@@ -775,10 +774,9 @@ static int __devinit sh_irda_probe(struct platform_device *pdev) | |||
775 | if (err) | 774 | if (err) |
776 | goto err_mem_2; | 775 | goto err_mem_2; |
777 | 776 | ||
778 | snprintf(clk_name, sizeof(clk_name), "irda%d", pdev->id); | 777 | self->clk = clk_get(&pdev->dev, NULL); |
779 | self->clk = clk_get(&pdev->dev, clk_name); | ||
780 | if (IS_ERR(self->clk)) { | 778 | if (IS_ERR(self->clk)) { |
781 | dev_err(&pdev->dev, "cannot get clock \"%s\"\n", clk_name); | 779 | dev_err(&pdev->dev, "cannot get irda clock\n"); |
782 | goto err_mem_3; | 780 | goto err_mem_3; |
783 | } | 781 | } |
784 | 782 | ||