[PATCH 5/7] ARM: OMAP2+: hwmod: add omap_hwmod_get_mpu_irq() and omap_hwmod_get_mpu_rt_pa()
From: paul@pwsan.com (Paul Walmsley)
Date: 2012-01-30 21:36:03
Also in:
linux-omap
From: paul@pwsan.com (Paul Walmsley)
Date: 2012-01-30 21:36:03
Also in:
linux-omap
Hi On Mon, 30 Jan 2012, Tony Lindgren wrote:
* Paul Walmsley [off-list ref] [120130 01:47]:quoted
The timer integration code pokes around in hwmod data structures. Those data structures are about to change. Define some functions for the timer integration code to use instead.Maybe these should use struct resource instead to make these more generic? Something like this maybe: int omap_hwmod_get_resource(struct omap_hwmod *oh, unsigned int type, unsigned int num, struct resource *r); Then the calling code would do: ... struct resource r; int res; res = omap_hwmod_get_resource(oh, IORESOURCE_IRQ, 0, &r); ...
That's a good idea and will definitely look into that. - Paul