}
static void sh_mtu2_register_clockevent(struct sh_mtu2_channel *ch,
- const char *name, unsigned long rating)
+ const char *name)
{
struct clock_event_device *ced = &ch->ced;
int ret;
ced->name = name;
ced->features = CLOCK_EVT_FEAT_PERIODIC;
- ced->rating = rating;
+ ced->rating = 200;
ced->cpumask = cpu_possible_mask;
ced->set_mode = sh_mtu2_clock_event_mode;
ced->suspend = sh_mtu2_clock_event_suspend;
}
static int sh_mtu2_register(struct sh_mtu2_channel *ch, const char *name,
- unsigned long clockevent_rating)
+ bool clockevent)
{
- if (clockevent_rating)
- sh_mtu2_register_clockevent(ch, name, clockevent_rating);
+ if (clockevent)
+ sh_mtu2_register_clockevent(ch, name);
return 0;
}
}
return sh_mtu2_register(ch, dev_name(&mtu->pdev->dev),
- cfg->clockevent_rating);
+ cfg->clockevent_rating != 0);
}
static int sh_mtu2_setup(struct sh_mtu2_device *mtu,