* Anand Gadiyar <gadiyar@xxxxxx> [101115 05:19]: > Hi all, > > Linux-next as of 20101115 fails to boot up on a zoom3. earlyprintk throws > the following crash. > > [ 0.000000] MUX: Add partition: #1: core, flags: 0 > [ 0.000000] Unable to handle kernel paging request at virtual address 01000268 I'll merge the following fix into Benoit's patch. Looks like hese patches need still a bit more testing :) Regards, Tony From: Tony Lindgren <tony@xxxxxxxxxxx> Date: Mon, 15 Nov 2010 09:30:11 -0800 Subject: [PATCH] omap: mux: Fix omap_mux_write_array Otherwise we can get: MUX: Add partition: #1: core, flags: 0 Unable to handle kernel paging request at virtual address 01000268 Also fix a cosmetic issue in omap_mux_init while. Signed-off-by: Tony Lindgren <tony@xxxxxxxxxxx> --- a/arch/arm/mach-omap2/mux.c +++ b/arch/arm/mach-omap2/mux.c @@ -796,7 +796,7 @@ static void omap_mux_init_signals(struct omap_mux_partition *partition, struct omap_board_mux *board_mux) { omap_mux_set_cmdline_signals(); - omap_mux_write_array(partition->base, board_mux); + omap_mux_write_array(partition, board_mux); } #else @@ -816,7 +816,7 @@ static void omap_mux_init_signals(struct omap_mux_partition *partition, static u32 mux_partitions_cnt; -int __init omap_mux_init(const char * name, u32 flags, +int __init omap_mux_init(const char *name, u32 flags, u32 mux_pbase, u32 mux_size, struct omap_mux *superset, struct omap_mux *package_subset, -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html