forked from luck/tmp_suning_uos_patched
ARM: OMAP2+: Fix mismerge for omap_hwmod_get_main_clk() API
Commitac5b0ea3d
(Merge tag 'omap-devel-f-for-3.6'...) had a merge conflict that somehow got incorrecly resolved in a lossy way for commitbed9d1bb
(ARM: OMAP2+: hwmod: add omap_hwmod_get_main_clk() API). Fix the issue by applying the missing pieces. Reported-by: Santosh Shilimkar <santosh.shilimkar@ti.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
This commit is contained in:
parent
ecc46cfdad
commit
68c9a95e92
|
@ -3633,3 +3633,18 @@ void __init omap_hwmod_init(void)
|
||||||
|
|
||||||
inited = true;
|
inited = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* omap_hwmod_get_main_clk - get pointer to main clock name
|
||||||
|
* @oh: struct omap_hwmod *
|
||||||
|
*
|
||||||
|
* Returns the main clock name assocated with @oh upon success,
|
||||||
|
* or NULL if @oh is NULL.
|
||||||
|
*/
|
||||||
|
const char *omap_hwmod_get_main_clk(struct omap_hwmod *oh)
|
||||||
|
{
|
||||||
|
if (!oh)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
return oh->main_clk;
|
||||||
|
}
|
||||||
|
|
|
@ -648,6 +648,8 @@ int omap_hwmod_pad_route_irq(struct omap_hwmod *oh, int pad_idx, int irq_idx);
|
||||||
|
|
||||||
extern void __init omap_hwmod_init(void);
|
extern void __init omap_hwmod_init(void);
|
||||||
|
|
||||||
|
const char *omap_hwmod_get_main_clk(struct omap_hwmod *oh);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Chip variant-specific hwmod init routines - XXX should be converted
|
* Chip variant-specific hwmod init routines - XXX should be converted
|
||||||
* to use initcalls once the initial boot ordering is straightened out
|
* to use initcalls once the initial boot ordering is straightened out
|
||||||
|
|
Loading…
Reference in New Issue
Block a user