Skip to content

Commit

Permalink
clocksource: sh_mtu2: Split channel setup to separate function
Browse files Browse the repository at this point in the history
Move the channel setup code from sh_mtu2_setup to a new
sh_mtu2_setup_channel function and call it from sh_mtu2_setup.

Signed-off-by: Laurent Pinchart <[email protected]>
Tested-by: Wolfram Sang <[email protected]>
  • Loading branch information
Laurent Pinchart committed Apr 16, 2014
1 parent 7dad72d commit 2e1a532
Showing 1 changed file with 19 additions and 10 deletions.
29 changes: 19 additions & 10 deletions drivers/clocksource/sh_mtu2.c
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,24 @@ static int sh_mtu2_register(struct sh_mtu2_channel *ch, char *name,
return 0;
}

static int sh_mtu2_setup_channel(struct sh_mtu2_channel *ch,
struct sh_mtu2_device *mtu)
{
struct sh_timer_config *cfg = mtu->pdev->dev.platform_data;

memset(ch, 0, sizeof(*ch));
ch->mtu = mtu;

ch->irq = platform_get_irq(mtu->pdev, 0);
if (ch->irq < 0) {
dev_err(&mtu->pdev->dev, "failed to get irq\n");
return ch->irq;
}

return sh_mtu2_register(ch, (char *)dev_name(&mtu->pdev->dev),
cfg->clockevent_rating);
}

static int sh_mtu2_setup(struct sh_mtu2_device *mtu,
struct platform_device *pdev)
{
Expand All @@ -297,12 +315,6 @@ static int sh_mtu2_setup(struct sh_mtu2_device *mtu,
goto err0;
}

mtu->channel.irq = platform_get_irq(mtu->pdev, 0);
if (mtu->channel.irq < 0) {
dev_err(&mtu->pdev->dev, "failed to get irq\n");
goto err0;
}

/* map memory, let mapbase point to our channel */
mtu->mapbase = ioremap_nocache(res->start, resource_size(res));
if (mtu->mapbase == NULL) {
Expand All @@ -322,10 +334,7 @@ static int sh_mtu2_setup(struct sh_mtu2_device *mtu,
if (ret < 0)
goto err2;

mtu->channel.mtu = mtu;

ret = sh_mtu2_register(&mtu->channel, (char *)dev_name(&mtu->pdev->dev),
cfg->clockevent_rating);
ret = sh_mtu2_setup_channel(&mtu->channel, mtu);
if (ret < 0)
goto err3;

Expand Down

0 comments on commit 2e1a532

Please sign in to comment.