~ubuntu-branches/ubuntu/precise/linux-linaro-u8500/precise

« back to all changes in this revision

Viewing changes to arch/arm/plat-omap/common.c

  • Committer: Bazaar Package Importer
  • Author(s): John Rigby, Upstream Fixes, Andy Green, John Rigby
  • Date: 2011-04-14 12:16:06 UTC
  • Revision ID: james.westby@ubuntu.com-20110414121606-b77podkyqgr2oix7
Tags: 2.6.38-1002.3
[ Upstream Fixes ]

* MUSB: shutdown: Make sure block is awake before doing shutdown
  - LP: #745737
* Fixed gpio polarity of gpio USB-phy reset.
  - LP: #747639

[ Andy Green ]

* LINARO: SAUCE: disable CONFIG_OMAP_RESET_CLOCKS
  - LP: #752900

[ John Rigby ]

* Rebase to new upstreams:
  Linux v2.6.38.1
  linaro-linux-2.6.38-upstream-29Mar2011
  Ubuntu-2.6.38-7.35
* SAUCE: OMAP4: clock: wait for module to become accessible on
  a clk enable
  - LP: #745737
* Rebase to new upstreams:
  Linux v2.6.38.2
  linaro-linux-2.6.38-upstream-5Apr2011
  Ubuntu-2.6.38-8.41
  - LP: #732842
* Update configs for device tree, dvfs and lttng
* LINARO: add building of dtb's
* LINARO: SAUCE: Disable lowest operating freqs on omap34xx
  - LP: #732912

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
#define NO_LENGTH_CHECK 0xffffffff
26
26
 
27
 
struct omap_board_config_kernel *omap_board_config;
 
27
struct omap_board_config_kernel *omap_board_config __initdata;
28
28
int omap_board_config_size;
29
29
 
30
 
static const void *get_config(u16 tag, size_t len, int skip, size_t *len_out)
 
30
static const void *__init get_config(u16 tag, size_t len,
 
31
                int skip, size_t *len_out)
31
32
{
32
33
        struct omap_board_config_kernel *kinfo = NULL;
33
34
        int i;
49
50
        return kinfo->data;
50
51
}
51
52
 
52
 
const void *__omap_get_config(u16 tag, size_t len, int nr)
 
53
const void *__init __omap_get_config(u16 tag, size_t len, int nr)
53
54
{
54
55
        return get_config(tag, len, nr, NULL);
55
56
}
56
 
EXPORT_SYMBOL(__omap_get_config);
57
57
 
58
 
const void *omap_get_var_config(u16 tag, size_t *len)
 
58
const void *__init omap_get_var_config(u16 tag, size_t *len)
59
59
{
60
60
        return get_config(tag, NO_LENGTH_CHECK, 0, len);
61
61
}
62
 
EXPORT_SYMBOL(omap_get_var_config);
63
62
 
64
63
void __init omap_reserve(void)
65
64
{