Re: [patch] fix ucb initialization on collie

From: Richard Purdie
Date: Fri Jul 07 2006 - 11:38:07 EST


On Fri, 2006-07-07 at 13:41 +0200, Pavel Machek wrote:
> From: Dirk Opfer <Dirk@xxxxxxxxxxxxxxx>
>
> Fix ucb initialization on collie. Wrong frequency was used and that
> led to things not working quite correctly. (I had to actually disable
> checks in my tree to get it to boot).
>

> @@ -479,7 +481,7 @@ static int ucb1x00_probe(struct mcp *mcp
> mcp_enable(mcp);
> id = mcp_reg_read(mcp, UCB_ID);
>
> - if (id != UCB_ID_1200 && id != UCB_ID_1300) {
> + if (id != UCB_ID_1200 && id != UCB_ID_1300 && id != UCB_ID_TC35143) {
> printk(KERN_WARNING "UCB1x00 ID not found: %04x\n", id);

UCB_ID_TC35143 isn't defined in mainline, otherwise I'd ack this.

Richard

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/